Hello- Trying to get rails up and running on my linux box with mysql. When I try to install the mysql gem, I get the following: Building native extensions. This could take a while... ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) ERROR: Failed to build gem native extension. ruby extconf.rb install mysql checking for mysql_query() in -lmysqlclient... no checking for main() in -lm... yes checking for mysql_query() in -lmysqlclient... no checking for main() in -lz... yes checking for mysql_query() in -lmysqlclient... no checking for main() in -lsocket... no checking for mysql_query() in -lmysqlclient... no checking for main() in -lnsl... yes checking for mysql_query() in -lmysqlclient... no *** 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/local/bin/ruby --with-mysql-config --without-mysql-config --with-mysql-dir --without-mysql-dir --with-mysql-include --without-mysql-include=${mysql-dir}/include --with-mysql-lib --without-mysql-lib=${mysql-dir}/lib --with-mysqlclientlib --without-mysqlclientlib --with-mlib --without-mlib --with-mysqlclientlib --without-mysqlclientlib --with-zlib --without-zlib --with-mysqlclientlib --without-mysqlclientlib --with-socketlib --without-socketlib --with-mysqlclientlib --without-mysqlclientlib --with-nsllib --without-nsllib --with-mysqlclientlib --without-mysqlclientlib Gem files will remain installed in /usr/local/lib/ruby/gems/1.8/gems/ mysql-2.7 for inspection. Results logged to /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7/ gem_make.out I''ve tried setting the config option and other various things when running ''gem install''. Anyone know how to get around this? Thanks very much. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Nov 29, 2007 11:32 AM, pete <peterbattaglia-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Trying to get rails up and running on my linux box with mysql. When I > try to install the mysql gem, I get the following: > > Building native extensions. This could take a while... > ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) > ERROR: Failed to build gem native extension.cd /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config -- Greg Donald http://destiney.com/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Thanks for the quick response. No success with that either: Building native extensions. This could take a while... ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) ERROR: Failed to build gem native extension. ruby extconf.rb install mysql -- --with-mysql-config=/usr/local/mysql/ bin/mysql_config extconf.rb:1: command not found: /usr/local/mysql/bin/mysql_config -- cflags *** 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/local/bin/ruby --with-mysql-config Gem files will remain installed in /usr/local/lib/ruby/gems/1.8/gems/ mysql-2.7 for inspection. Results logged to /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7/ gem_make.out On Nov 29, 10:40 am, "Greg Donald" <gdon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On Nov 29, 2007 11:32 AM, pete <peterbattag...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > Trying to get rails up and running on my linux box with mysql. When I > > try to install the mysql gem, I get the following: > > > Building native extensions. This could take a while... > > ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) > > ERROR: Failed to build gem native extension. > > cd /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 > gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config > > -- > Greg Donaldhttp://destiney.com/--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
This is still not working and I have tried almost every configuration option possible. As a side question...when you run ''gem install mysql'', what exactly does this do? Does it create a binding to an already installed version of MySQL? Does it install MySQL?? Thanks! On Nov 29, 10:48 am, pete <peterbattag...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Thanks for the quick response. > > No success with that either: > > Building native extensions. This could take a while... > ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) > ERROR: Failed to build gem native extension. > > ruby extconf.rb install mysql -- --with-mysql-config=/usr/local/mysql/ > bin/mysql_config > extconf.rb:1: command not found: /usr/local/mysql/bin/mysql_config -- > cflags > *** 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/local/bin/ruby > --with-mysql-config > > Gem files will remain installed in /usr/local/lib/ruby/gems/1.8/gems/ > mysql-2.7 for inspection. > Results logged to /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7/ > gem_make.out > > On Nov 29, 10:40 am, "Greg Donald" <gdon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > On Nov 29, 2007 11:32 AM, pete <peterbattag...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > Trying to get rails up and running on my linux box with mysql. When I > > > try to install the mysql gem, I get the following: > > > > Building native extensions. This could take a while... > > > ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) > > > ERROR: Failed to build gem native extension. > > > cd /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 > > gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config > > > -- > > Greg Donaldhttp://destiney.com/--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
It compiles and installs a mysql driver used by ruby. You must have a previously installed version of mysql including headers and libraries. -Bill pete wrote:> This is still not working and I have tried almost every configuration > option possible. > > As a side question...when you run ''gem install mysql'', what exactly > does this do? > > Does it create a binding to an already installed version of MySQL? > Does it install MySQL?? > > Thanks! > > On Nov 29, 10:48 am, pete <peterbattag...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> Thanks for the quick response. >> >> No success with that either: >> >> Building native extensions. This could take a while... >> ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) >> ERROR: Failed to build gem native extension. >> >> ruby extconf.rb install mysql -- --with-mysql-config=/usr/local/mysql/ >> bin/mysql_config >> extconf.rb:1: command not found: /usr/local/mysql/bin/mysql_config -- >> cflags >> *** 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/local/bin/ruby >> --with-mysql-config >> >> Gem files will remain installed in /usr/local/lib/ruby/gems/1.8/gems/ >> mysql-2.7 for inspection. >> Results logged to /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7/ >> gem_make.out >> >> On Nov 29, 10:40 am, "Greg Donald" <gdon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >> >>> On Nov 29, 2007 11:32 AM, pete <peterbattag...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>> >>>> Trying to get rails up and running on my linux box with mysql. When I >>>> try to install the mysql gem, I get the following: >>>> >>>> Building native extensions. This could take a while... >>>> ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) >>>> ERROR: Failed to build gem native extension. >>>> >>> cd /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 >>> gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config >>> >>> -- >>> Greg Donaldhttp://destiney.com/ >>> > > >-- Sincerely, William Pratt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Thanks Bill. Is there a dependency on the version of MySQL, I believe I am running an older version. On Nov 30, 9:18 am, William Pratt <bi...-YbheRAKfYF4eIZ0/mPfg9Q@public.gmane.org> wrote:> It compiles and installs a mysql driver used by ruby. You must have a > previously installed version of mysql including headers and libraries. > > -Bill > > > > pete wrote: > > This is still not working and I have tried almost every configuration > > option possible. > > > As a side question...when you run ''gem install mysql'', what exactly > > does this do? > > > Does it create a binding to an already installed version of MySQL? > > Does it install MySQL?? > > > Thanks! > > > On Nov 29, 10:48 am, pete <peterbattag...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > >> Thanks for the quick response. > > >> No success with that either: > > >> Building native extensions. This could take a while... > >> ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) > >> ERROR: Failed to build gem native extension. > > >> ruby extconf.rb install mysql -- --with-mysql-config=/usr/local/mysql/ > >> bin/mysql_config > >> extconf.rb:1: command not found: /usr/local/mysql/bin/mysql_config -- > >> cflags > >> *** 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/local/bin/ruby > >> --with-mysql-config > > >> Gem files will remain installed in /usr/local/lib/ruby/gems/1.8/gems/ > >> mysql-2.7 for inspection. > >> Results logged to /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7/ > >> gem_make.out > > >> On Nov 29, 10:40 am, "Greg Donald" <gdon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > >>> On Nov 29, 2007 11:32 AM, pete <peterbattag...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > >>>> Trying to get rails up and running on my linux box with mysql. When I > >>>> try to install the mysql gem, I get the following: > > >>>> Building native extensions. This could take a while... > >>>> ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) > >>>> ERROR: Failed to build gem native extension. > > >>> cd /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 > >>> gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config > > >>> -- > >>> Greg Donaldhttp://destiney.com/ > > -- > Sincerely, > > William Pratt--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
It should work ok with 4.1or 5, but if I remember right, it recommends 5. I am using the latest 5 with no problems (5.0.45 I think). -Bill pete wrote:> Thanks Bill. > > Is there a dependency on the version of MySQL, I believe I am running > an older version. > > On Nov 30, 9:18 am, William Pratt <bi...-YbheRAKfYF4eIZ0/mPfg9Q@public.gmane.org> wrote: > >> It compiles and installs a mysql driver used by ruby. You must have a >> previously installed version of mysql including headers and libraries. >> >> -Bill >> >> >> >> pete wrote: >> >>> This is still not working and I have tried almost every configuration >>> option possible. >>> >>> As a side question...when you run ''gem install mysql'', what exactly >>> does this do? >>> >>> Does it create a binding to an already installed version of MySQL? >>> Does it install MySQL?? >>> >>> Thanks! >>> >>> On Nov 29, 10:48 am, pete <peterbattag...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>> >>>> Thanks for the quick response. >>>> >>>> No success with that either: >>>> >>>> Building native extensions. This could take a while... >>>> ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) >>>> ERROR: Failed to build gem native extension. >>>> >>>> ruby extconf.rb install mysql -- --with-mysql-config=/usr/local/mysql/ >>>> bin/mysql_config >>>> extconf.rb:1: command not found: /usr/local/mysql/bin/mysql_config -- >>>> cflags >>>> *** 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/local/bin/ruby >>>> --with-mysql-config >>>> >>>> Gem files will remain installed in /usr/local/lib/ruby/gems/1.8/gems/ >>>> mysql-2.7 for inspection. >>>> Results logged to /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7/ >>>> gem_make.out >>>> >>>> On Nov 29, 10:40 am, "Greg Donald" <gdon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>>> >>>>> On Nov 29, 2007 11:32 AM, pete <peterbattag...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>>>> >>>>>> Trying to get rails up and running on my linux box with mysql. When I >>>>>> try to install the mysql gem, I get the following: >>>>>> >>>>>> Building native extensions. This could take a while... >>>>>> ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) >>>>>> ERROR: Failed to build gem native extension. >>>>>> >>>>> cd /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 >>>>> gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config >>>>> >>>>> -- >>>>> Greg Donaldhttp://destiney.com/ >>>>> >> -- >> Sincerely, >> >> William Pratt >> > > >-- Sincerely, William Pratt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
What about MySQL client? I don''t believe the client is installed, only the server. On Nov 30, 9:44 am, William Pratt <bi...-YbheRAKfYF4eIZ0/mPfg9Q@public.gmane.org> wrote:> It should work ok with 4.1or 5, but if I remember right, it recommends > 5. I am using the latest 5 with no problems (5.0.45 I think). > > -Bill > > > > pete wrote: > > Thanks Bill. > > > Is there a dependency on the version of MySQL, I believe I am running > > an older version. > > > On Nov 30, 9:18 am, William Pratt <bi...-YbheRAKfYF4eIZ0/mPfg9Q@public.gmane.org> wrote: > > >> It compiles and installs a mysql driver used by ruby. You must have a > >> previously installed version of mysql including headers and libraries. > > >> -Bill > > >> pete wrote: > > >>> This is still not working and I have tried almost every configuration > >>> option possible. > > >>> As a side question...when you run ''gem install mysql'', what exactly > >>> does this do? > > >>> Does it create a binding to an already installed version of MySQL? > >>> Does it install MySQL?? > > >>> Thanks! > > >>> On Nov 29, 10:48 am, pete <peterbattag...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > >>>> Thanks for the quick response. > > >>>> No success with that either: > > >>>> Building native extensions. This could take a while... > >>>> ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) > >>>> ERROR: Failed to build gem native extension. > > >>>> ruby extconf.rb install mysql -- --with-mysql-config=/usr/local/mysql/ > >>>> bin/mysql_config > >>>> extconf.rb:1: command not found: /usr/local/mysql/bin/mysql_config -- > >>>> cflags > >>>> *** 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/local/bin/ruby > >>>> --with-mysql-config > > >>>> Gem files will remain installed in /usr/local/lib/ruby/gems/1.8/gems/ > >>>> mysql-2.7 for inspection. > >>>> Results logged to /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7/ > >>>> gem_make.out > > >>>> On Nov 29, 10:40 am, "Greg Donald" <gdon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > >>>>> On Nov 29, 2007 11:32 AM, pete <peterbattag...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > >>>>>> Trying to get rails up and running on my linux box with mysql. When I > >>>>>> try to install the mysql gem, I get the following: > > >>>>>> Building native extensions. This could take a while... > >>>>>> ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) > >>>>>> ERROR: Failed to build gem native extension. > > >>>>> cd /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 > >>>>> gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config > > >>>>> -- > >>>>> Greg Donaldhttp://destiney.com/ > > >> -- > >> Sincerely, > > >> William Pratt > > -- > Sincerely, > > William Pratt--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
It''s very possible that it is looking for libmysqlclient (I am almost positive it does). Install the client / client libs and see if that solves your problem. -Bill pete wrote:> What about MySQL client? I don''t believe the client is installed, > only the server. > > On Nov 30, 9:44 am, William Pratt <bi...-YbheRAKfYF4eIZ0/mPfg9Q@public.gmane.org> wrote: > >> It should work ok with 4.1or 5, but if I remember right, it recommends >> 5. I am using the latest 5 with no problems (5.0.45 I think). >> >> -Bill >> >> >> >> pete wrote: >> >>> Thanks Bill. >>> >>> Is there a dependency on the version of MySQL, I believe I am running >>> an older version. >>> >>> On Nov 30, 9:18 am, William Pratt <bi...-YbheRAKfYF4eIZ0/mPfg9Q@public.gmane.org> wrote: >>> >>>> It compiles and installs a mysql driver used by ruby. You must have a >>>> previously installed version of mysql including headers and libraries. >>>> >>>> -Bill >>>> >>>> pete wrote: >>>> >>>>> This is still not working and I have tried almost every configuration >>>>> option possible. >>>>> >>>>> As a side question...when you run ''gem install mysql'', what exactly >>>>> does this do? >>>>> >>>>> Does it create a binding to an already installed version of MySQL? >>>>> Does it install MySQL?? >>>>> >>>>> Thanks! >>>>> >>>>> On Nov 29, 10:48 am, pete <peterbattag...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>>>> >>>>>> Thanks for the quick response. >>>>>> >>>>>> No success with that either: >>>>>> >>>>>> Building native extensions. This could take a while... >>>>>> ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) >>>>>> ERROR: Failed to build gem native extension. >>>>>> >>>>>> ruby extconf.rb install mysql -- --with-mysql-config=/usr/local/mysql/ >>>>>> bin/mysql_config >>>>>> extconf.rb:1: command not found: /usr/local/mysql/bin/mysql_config -- >>>>>> cflags >>>>>> *** 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/local/bin/ruby >>>>>> --with-mysql-config >>>>>> >>>>>> Gem files will remain installed in /usr/local/lib/ruby/gems/1.8/gems/ >>>>>> mysql-2.7 for inspection. >>>>>> Results logged to /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7/ >>>>>> gem_make.out >>>>>> >>>>>> On Nov 29, 10:40 am, "Greg Donald" <gdon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>>>>> >>>>>>> On Nov 29, 2007 11:32 AM, pete <peterbattag...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>>>>>> >>>>>>>> Trying to get rails up and running on my linux box with mysql. When I >>>>>>>> try to install the mysql gem, I get the following: >>>>>>>> >>>>>>>> Building native extensions. This could take a while... >>>>>>>> ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) >>>>>>>> ERROR: Failed to build gem native extension. >>>>>>>> >>>>>>> cd /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 >>>>>>> gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config >>>>>>> >>>>>>> -- >>>>>>> Greg Donaldhttp://destiney.com/ >>>>>>> >>>> -- >>>> Sincerely, >>>> >>>> William Pratt >>>> >> -- >> Sincerely, >> >> William Pratt >> > > >-- Sincerely, William Pratt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Greg Donald wrote:> On Nov 29, 2007 11:32 AM, pete <peterbattaglia-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> Trying to get rails up and running on my linux box with mysql. When I >> try to install the mysql gem, I get the following: >> >> Building native extensions. This could take a while... >> ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) >> ERROR: Failed to build gem native extension. > > cd /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 > gem install mysql -- > --with-mysql-config=/usr/local/mysql/bin/mysql_config > > > -- > Greg Donald > http://destiney.com/This fixed worked for me on OS X Tiger. Thanks! I have MySQL 5.0.45 installed along with the MySQL GUI tools. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I was facing this same issue. I just installed libmysqlclient15-dev on my syste (ubuntu 8.10) and could get gem mysql installed successfully William Pratt wrote:> It''s very possible that it is looking for libmysqlclient (I am almost > positive it does). Install the client / client libs and see if that > solves your problem. > > -Bill >-- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> cd /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 > gem install mysql -- > --with-mysql-config=/usr/local/mysql/bin/mysql_config > Greg Donald > http://destiney.com/YUP. this works. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
This worked for me also. Wainer Moschetta wrote:> I was facing this same issue. I just installed libmysqlclient15-dev on > my syste (ubuntu 8.10) and could get gem mysql installed successfully > > William Pratt wrote: >> It''s very possible that it is looking for libmysqlclient (I am almost >> positive it does). Install the client / client libs and see if that >> solves your problem. >> >> -Bill >>-- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Greg Donald wrote:> On Nov 29, 2007 11:32 AM, pete <peterbattaglia-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> Trying to get rails up and running on my linux box with mysql. When I >> try to install the mysql gem, I get the following: >> >> Building native extensions. This could take a while... >> ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) >> ERROR: Failed to build gem native extension. > > cd /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 > gem install mysql -- > --with-mysql-config=/usr/local/mysql/bin/mysql_config > > > -- > Greg Donald > http://destiney.com/This worked for me on Mac OS X Leopard with MySQL 5.1.34. In particular, the following command worked: sudo gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config -- Posted via http://www.ruby-forum.com/.
I tried: <-- clip starts --> [root]# gem install mysql -- --with-mysql-config=/usr/bin/mysql_config Building native extensions. This could take a while... ERROR: Error installing mysql: ERROR: Failed to build gem native extension. /usr/local/bin/ruby extconf.rb install mysql -- --with-mysql-config=/usr/bin/mysql_config checking for mysql_ssl_set()... no checking for mysql.h... no checking for mysql/mysql.h... no *** 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/local/bin/ruby --with-mysql-config Gem files will remain installed in /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 for inspection. Results logged to /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7/gem_make.out <-- clip ends --> Steps I needed on CentOS 5 linux were (in addition to installed ''normal'' mysql) 1. Install mysql-devel "yum install mysql-devel" as root 2. Find the location of mysql_config "locate mysql_config" and fix that full path to "--with-mysql-config=" option 3. Success! <-- clip starts --> [root]# gem install mysql -- --with-mysql-config=/usr/lib/mysql/mysql_config Building native extensions. This could take a while... Successfully installed mysql-2.7 1 gem installed <-- clip ends --> -- Posted via http://www.ruby-forum.com/.
I found a blog post that solves this problem ( http://nmanzi.com/?p=39 ) and I turned it into a script so that you just have to run "./ install_mysql_ruby_adapter" http://github.com/thirdreplicator/install_mysql_ruby_adapter_for_ruby1.9/tree/master I run Ruby 1.9.1 on Ubuntu 8.04/8.10 and CentOS 5.2 with root access. David :) On Jun 2, 11:43 pm, Ni Pa <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> I tried: > > <-- clip starts --> > [root]#geminstallmysql-- --with-mysql-config=/usr/bin/mysql_config > Building native extensions. This could take a while... > ERROR: Error installingmysql: > ERROR: Failed to buildgemnative extension. > > /usr/local/bin/ruby extconf.rbinstallmysql-- > --with-mysql-config=/usr/bin/mysql_config > checking for mysql_ssl_set()... no > checking formysql.h... no > checking formysql/mysql.h... no > *** 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/local/bin/ruby > --with-mysql-config > > Gemfiles will remain installed in > /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 for inspection. > Results logged to > /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7/gem_make.out > <-- clip ends --> > > Steps I needed on CentOS 5 linux were (in addition to installed ''normal''mysql) > 1.Installmysql-devel "yuminstallmysql-devel" as root > 2. Find the location of mysql_config "locate mysql_config" and fix that > full path to "--with-mysql-config=" option > 3. Success! > > <-- clip starts --> > [root]#geminstallmysql-- > --with-mysql-config=/usr/lib/mysql/mysql_config > Building native extensions. This could take a while... > Successfully installedmysql-2.7 > 1geminstalled > <-- clip ends --> > -- > Posted viahttp://www.ruby-forum.com/.
Whenever you can''t build "native extensions", it means there is some lib or lib-dev missing. Generally you''ll need to do a sudo apt-get install lib-???-dev, or sudo apt-get install build_essential. This time, I had to install the following: ''sudo apt-get install libmysqlclient15-dev'' Unfortunately, there is NO EASY WAY (that I know of) to identify what is missing from the attempt to compile. -- Posted via http://www.ruby-forum.com/.
Greg Donald wrote:> cd /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 > gem install mysql -- > --with-mysql-config=/usr/local/mysql/bin/mysql_config > -- > Greg Donald > http://destiney.com/Worked for me too. -- Posted via http://www.ruby-forum.com/.
I got it working following these steps: 1. Install mysql-devel "yum install mysql-devel" as root 2. Find the location of mysql_config "locate mysql_config" and fix that full path to "--with-mysql-config=" option 3. Success! Best regards. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Kirk Howard wrote:> Whenever you can''t build "native extensions", it means there is some lib > or lib-dev missing. Generally you''ll need to do a sudo apt-get install > lib-???-dev, or sudo apt-get install build_essential. > > This time, I had to install the following: > ''sudo apt-get install libmysqlclient15-dev''Thanx this worked well tho the ri docs did not install (I think) Terminal output: Successfully installed mysql-2.8.1 1 gem installed Installing ri documentation for mysql-2.8.1... No definition for next_result No definition for field_name No definition for field_table ............ etc etc Does this mean another file is missing and is not having ri docs any big deal? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Abraham Tio wrote:>> cd /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 >> gem install mysql -- >> --with-mysql-config=/usr/local/mysql/bin/mysql_config >> Greg Donald >> http://destiney.com/ > > YUP. this works.newbie question... I was able to get an error free install on OSX Leopard 10.6.2 with the following. The first cds to the mysql gem location of my Leopard install (may differ for others): cd /Library/Ruby/Gems/1.8/gems/mysql-2.8.1 sudo gem install mysql --no-rdoc --no-ri -- --with-mysql-config=/usr/local/mysql/bin/mysql_config There were many "No definition for..." RDoc and Ri errors otherwise. Just starting my first Ruby project... and not so comfortable with this install of the mysql gem. I expect there''s possibly serious ramifications of excluding these two processes. Can anybody tell us what are we missing by resorting to these install parameters; and/or how can we install with ri and rdoc successfully? tia m -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 21 March 2010 00:48, Mike Montagne <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Abraham Tio wrote: >>> cd /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 >>> gem install mysql -- >>> --with-mysql-config=/usr/local/mysql/bin/mysql_config >>> Greg Donald >>> http://destiney.com/ >> >> YUP. this works. > > newbie question... > > I was able to get an error free install on OSX Leopard 10.6.2 with the > following. The first cds to the mysql gem location of my Leopard install > (may differ for others): > > cd /Library/Ruby/Gems/1.8/gems/mysql-2.8.1 > sudo gem install mysql --no-rdoc --no-ri -- > --with-mysql-config=/usr/local/mysql/bin/mysql_config > > There were many "No definition for..." RDoc and Ri errors otherwise. > > Just starting my first Ruby project... and not so comfortable with this > install of the mysql gem. I expect there''s possibly serious > ramifications of excluding these two processes. Can anybody tell us what > are we missing by resorting to these install parameters; and/or how can > we install with ri and rdoc successfully?ri and rdoc are just for documentation of the gem. Google them to find details. Not having them will not affect the operation of the gem. Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Colin Law wrote:> ri and rdoc are just for documentation of the gem. Google them to > find details. Not having them will not affect the operation of the > gem. > > ColinThanks Colin. I quickly found that out. I''ve posted instructions for resolving this issue at MySQL: http://forums.mysql.com/read.php?116,359591,359591#msg-359591 The described process determines vital paths for successful installation on potentially any system. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Mike Montagne wrote:> Abraham Tio wrote: >>> cd /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7 >>> gem install mysql -- >>> --with-mysql-config=/usr/local/mysql/bin/mysql_config >>> Greg Donald >>> http://destiney.com/ >> >> YUP. this works. > > newbie question... > > I was able to get an error free install on OSX Leopard 10.6.2 with the > following. The first cds to the mysql gem location of my Leopard install > (may differ for others): > > cd /Library/Ruby/Gems/1.8/gems/mysql-2.8.1 > sudo gem install mysql --no-rdoc --no-ri -- > --with-mysql-config=/usr/local/mysql/bin/mysql_config > > There were many "No definition for..." RDoc and Ri errors otherwise. > > Just starting my first Ruby project... and not so comfortable with this > install of the mysql gem. I expect there''s possibly serious > ramifications of excluding these two processes. Can anybody tell us what > are we missing by resorting to these install parameters; and/or how can > we install with ri and rdoc successfully? > > tia > > mYay! After much irc and googling, at last, I found your recent entry Mike and I also was able to get an error free install on OS X 10.6.3 with $ sudo gem install mysql --no-rdoc --no-ri -- --with-mysql-config=/usr/local/mysql/bin/mysql_config TX! huuan -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
apt-get install libmysqld-dev will be ok . -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Wainer Moschetta wrote in post #773714:> I was facing this same issue. I just installed libmysqlclient15-dev on > my syste (ubuntu 8.10) and could get gem mysql installed successfully > > William Pratt wrote: >> It''s very possible that it is looking for libmysqlclient (I am almost >> positive it does). Install the client / client libs and see if that >> solves your problem. >> >> -Bill >>thanks. I installed libmysqlclient16-dev, everything worked. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
This is an old thread, but if you google the error message, it appears first in the list of results, so it''s worth writing a summary. The root of the problem is that to install the mysql gem you need to compile some native code. ("Native code" is software written in a language such as C or C++ which needs to be compiled specifically for the processor that your computer uses - 64-bit Intel x86 or whatever.) Actually, it''s worth noting that this applies to EVERY DATABASE GEM - postgres, firebird or whatever. Mysql is just the most popular. As far as I can see, the reason that the first solution above doesn''t work is that it depends upon the method that you use to install mysql. On my Ubuntu Linux system, I did this: sudo apt-get install mysql-server mysql-client This installs mysql, but it doesn''t create a directory /usr/local/mysql/bin/mysql_config. The first solution above expects that directory to exist. The second solution is to install the dev client, which I did: sudo apt-get install libmysqld-dev and then I could install the mysql gem: gem install mysql2 So the first solution didn''t work for me but the second one did. However, for you it may be different. It''s also worth saying that I''ve installed mysql and Rails on a Windows PC and I didn''t get this problem. It all depends on the environment you are using, the version of rails and the method used to install mysql. This may not be under your control. Last year I tried to get my app working on a shared managed host that supported Ruby on Rails. They had just upgraded from Rails 2 to Rails 3. It being a manged host, they installed all the base software and when I hit this problem I couldn''t get past it. I wasted hours and got through several hosting companies before I switched to a Virtual Private Server (VPS) where I have root access and install everything myself. I got the problem again, but this time I was able to get to the bottom of it. If you working with a Linux host, this command may be useful: find / -name "libmysqlclient.*" 2>/dev/null It searches through your file system starting at the root looking for libmysqlclient. On my system it produces: /usr/lib/libmysqlclient.a /usr/lib/libmysqlclient.so.16 /usr/lib/libmysqlclient.so /usr/lib/libmysqlclient.so.16.0.0 -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.