Louis, > So, nothing new under the sun, alas. Would you have any other track to > follow?
when you run locate libmysql and locate mysql_config what does it show? It may be simply that you have a binary only install of mysql and you need the development material (shared/static libraries, c header files and the like). The locate command will help you home in on the proper paths to use. For my install, I used the macports version of mysql, and that has worked well for me, but I had to tweak the gem install as so: sudo env ARCHFLAGS="-arch x86_64" gem install do_mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config sudo env ARCHFLAGS="-arch x86_64" gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config -Randy Fischer -- You received this message because you are subscribed to the Google Groups "DataMapper" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/datamapper?hl=en.
