Hi, I''m installed ImageMagick and RMagick in an OS X and when I try to require RMagick lib I get this error: irb(main):001:0> require ''RMagick'' dyld: ruby version mismatch for library: /usr/X11R6/lib/libfreetype.6.dylib (compatibility version of user: 10.0.0 greater than library''s version: 6.3.0) Trace/BPT trap Someone know what can be wrong? Thank you -- Pedro C. Valentini pedro-p14LI7ZcAE/pVLaUnt/cCQC/G2K4zDHf@public.gmane.org +55 (21) 8708-8035
Hi, I''m installed ImageMagick and RMagick in an OS X and when I try to require RMagick lib I get this error: irb(main):001:0> require ''RMagick'' dyld: ruby version mismatch for library: /usr/X11R6/lib/libfreetype.6.dylib (compatibility version of user: 10.0.0 greater than library''s version: 6.3.0) Trace/BPT trap Someone know what can be wrong? Thank you -- Pedro C. Valentini pedro-p14LI7ZcAE/pVLaUnt/cCQC/G2K4zDHf@public.gmane.org +55 (21) 8708-8035
ImageMagick was installed correct, I tested it with the comands: (14:37:01 <~>) 0 $ convert -version Version: ImageMagick 6.1.7 12/19/04 Q16 http://www.imagemagick.org Copyright: Copyright (C) 1999-2005 ImageMagick Studio LLC And /usr/local/bin/convert logo: logo.gif that realy generate the logo.gif widout problems... Some Idea in what can be the error in RMagick? Thank you Pedro Valentini escreveu:> Hi, > I''m installed ImageMagick and RMagick in an OS X and when I try to > require RMagick lib I get this error: > > irb(main):001:0> require ''RMagick'' > dyld: ruby version mismatch for library: > /usr/X11R6/lib/libfreetype.6.dylib (compatibility version of user: > 10.0.0 greater than library''s version: 6.3.0) > Trace/BPT trap > > Someone know what can be wrong? > Thank you >-- Pedro C. Valentini pedro-p14LI7ZcAE/pVLaUnt/cCQC/G2K4zDHf@public.gmane.org +55 (21) 8708-8035
My only suggestion is to look at the OS X readme that comes with the RMagick tarball and follow it exactly step-by-step. It took me a few tries, but I eventually figured it out. -PJ http://pjhyett.com On 9/2/05, Pedro Valentini <pedro-p14LI7ZcAE/pVLaUnt/cCQC/G2K4zDHf@public.gmane.org> wrote:> Hi, > I''m installed ImageMagick and RMagick in an OS X and when I try to > require RMagick lib I get this error: > > irb(main):001:0> require ''RMagick'' > dyld: ruby version mismatch for library: > /usr/X11R6/lib/libfreetype.6.dylib (compatibility version of user: > 10.0.0 greater than library''s version: 6.3.0) > Trace/BPT trap > > Someone know what can be wrong? > Thank you > > -- > > Pedro C. Valentini > pedro-p14LI7ZcAE/pVLaUnt/cCQC/G2K4zDHf@public.gmane.org > +55 (21) 8708-8035 > > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
hi pedro, the readme PJ mentions has this part about the freetype lib: "To make sure you have the right version, enter the command: freetype-config --cflags You should see this output: -I/opt/local/include/freetype2 -I/opt/local/include If you see the following output instead, -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 you should edit your $PATH to make sure that /opt/local/bin preceeds /usr/X11R6/bin. Do not try to install xMagick until you get the correct output from the freetype-config program." maybe this gives you a lead? following this read-me did the trick for me too.... it just pains me to remember it took me 3 days of trials til I read it. hope this helps, Oliver On Sep 3, 2005, at 7:08 PM, PJ Hyett wrote:> My only suggestion is to look at the OS X readme that comes with the > RMagick tarball and follow it exactly step-by-step. It took me a few > tries, but I eventually figured it out. > > -PJ > http://pjhyett.com > > On 9/2/05, Pedro Valentini <pedro-p14LI7ZcAE/pVLaUnt/cCQC/G2K4zDHf@public.gmane.org> wrote: > >> Hi, >> I''m installed ImageMagick and RMagick in an OS X and when I try to >> require RMagick lib I get this error: >> >> irb(main):001:0> require ''RMagick'' >> dyld: ruby version mismatch for library: >> /usr/X11R6/lib/libfreetype.6.dylib (compatibility version of user: >> 10.0.0 greater than library''s version: 6.3.0) >> Trace/BPT trap >> >> Someone know what can be wrong? >> Thank you >> >> -- >> >> Pedro C. Valentini >> pedro-p14LI7ZcAE/pVLaUnt/cCQC/G2K4zDHf@public.gmane.org >> +55 (21) 8708-8035 >> >> >> _______________________________________________ >> Rails mailing list >> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >> http://lists.rubyonrails.org/mailman/listinfo/rails >> >> > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
hi pedro, the readme PJ mentions has this part about the freetype lib: "To make sure you have the right version, enter the command: freetype-config --cflags You should see this output: -I/opt/local/include/freetype2 -I/opt/local/include If you see the following output instead, -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 you should edit your $PATH to make sure that /opt/local/bin preceeds /usr/X11R6/bin. Do not try to install xMagick until you get the correct output from the freetype-config program." maybe this gives you a lead? following this read-me did the trick for me too.... it just pains me to remember it took me 3 days til I read it. hope this helps, Oliver On Sep 3, 2005, at 7:08 PM, PJ Hyett wrote:> My only suggestion is to look at the OS X readme that comes with the > RMagick tarball and follow it exactly step-by-step. It took me a few > tries, but I eventually figured it out. > > -PJ > http://pjhyett.com > > On 9/2/05, Pedro Valentini <pedro-p14LI7ZcAE/pVLaUnt/cCQC/G2K4zDHf@public.gmane.org> wrote: > >> Hi, >> I''m installed ImageMagick and RMagick in an OS X and when I try to >> require RMagick lib I get this error: >> >> irb(main):001:0> require ''RMagick'' >> dyld: ruby version mismatch for library: >> /usr/X11R6/lib/libfreetype.6.dylib (compatibility version of user: >> 10.0.0 greater than library''s version: 6.3.0) >> Trace/BPT trap >> >> Someone know what can be wrong? >> Thank you >> >> -- >> >> Pedro C. Valentini >> pedro-p14LI7ZcAE/pVLaUnt/cCQC/G2K4zDHf@public.gmane.org >> +55 (21) 8708-8035 >> >> >> _______________________________________________ >> Rails mailing list >> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >> http://lists.rubyonrails.org/mailman/listinfo/rails >> >> > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
I trayed follow this steps 10 times. The answer for freetype-config --cflags is: -I/usr/local/include/freetype2 -I/usr/local/include I''m tryed to install freetype too and ImageMagick, RMagick many times... Thank you Pedro oliver barnes escreveu:> hi pedro, > > the readme PJ mentions has this part about the freetype lib: > > "To make sure you have the right version, enter the command: > > freetype-config --cflags > > You should see this output: > > -I/opt/local/include/freetype2 -I/opt/local/include > > If you see the following output instead, > > -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 > > you should edit your $PATH to make sure that /opt/local/bin preceeds > /usr/X11R6/bin. Do not try to install xMagick until you get the > correct output > from the freetype-config program." > > maybe this gives you a lead? following this read-me did the trick for > me too.... it just pains me to remember it took me 3 days of trials > til I read it. > > hope this helps, > Oliver > > On Sep 3, 2005, at 7:08 PM, PJ Hyett wrote: > >> My only suggestion is to look at the OS X readme that comes with the >> RMagick tarball and follow it exactly step-by-step. It took me a few >> tries, but I eventually figured it out. >> >> -PJ >> http://pjhyett.com >> >> On 9/2/05, Pedro Valentini <pedro-p14LI7ZcAE/pVLaUnt/cCQC/G2K4zDHf@public.gmane.org> wrote: >> >>> Hi, >>> I''m installed ImageMagick and RMagick in an OS X and when I try to >>> require RMagick lib I get this error: >>> >>> irb(main):001:0> require ''RMagick'' >>> dyld: ruby version mismatch for library: >>> /usr/X11R6/lib/libfreetype.6.dylib (compatibility version of user: >>> 10.0.0 greater than library''s version: 6.3.0) >>> Trace/BPT trap >>> >>> Someone know what can be wrong? >>> Thank you >>> >>> -- >>> >>> Pedro C. Valentini >>> pedro-p14LI7ZcAE/pVLaUnt/cCQC/G2K4zDHf@public.gmane.org >>> +55 (21) 8708-8035 >>> >>> >>> _______________________________________________ >>> Rails mailing list >>> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >>> http://lists.rubyonrails.org/mailman/listinfo/rails >>> >>> >> _______________________________________________ >> Rails mailing list >> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >> http://lists.rubyonrails.org/mailman/listinfo/rails >> > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Pedro C. Valentini pedro-p14LI7ZcAE/pVLaUnt/cCQC/G2K4zDHf@public.gmane.org +55 (21) 8708-8035
hi pedro, I fell your pain! =D believe me, I was in this for several days but from the read-me, the output should be>> -I/opt/local/include/freetype2 -I/opt/local/includewhereas you have -I/usr/local/include/freetype2 -I/usr/local/include if you installed freetype in /opt local, then you should>> you should edit your $PATH to make sure that /opt/local/bin preceeds >> /usr/X11R6/bin. Do not try to install xMagick until you get the >> correct output >> from the freetype-config program."feel free to contact me off-list, I might be able to help you out (in portuguese) - Oliver On Sep 8, 2005, at 1:57 PM, Pedro Valentini wrote:> > I trayed follow this steps 10 times. > The answer for freetype-config --cflags is: > -I/usr/local/include/freetype2 -I/usr/local/include > > I''m tryed to install freetype too and ImageMagick, RMagick many > times... > > Thank you > Pedro > > > oliver barnes escreveu: > > >> hi pedro, >> >> the readme PJ mentions has this part about the freetype lib: >> >> "To make sure you have the right version, enter the command: >> >> freetype-config --cflags >> >> You should see this output: >> >> -I/opt/local/include/freetype2 -I/opt/local/include >> >> If you see the following output instead, >> >> -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 >> >> you should edit your $PATH to make sure that /opt/local/bin preceeds >> /usr/X11R6/bin. Do not try to install xMagick until you get the >> correct output >> from the freetype-config program." >> >> maybe this gives you a lead? following this read-me did the trick >> for me too.... it just pains me to remember it took me 3 days of >> trials til I read it. >> >> hope this helps, >> Oliver >> >> On Sep 3, 2005, at 7:08 PM, PJ Hyett wrote: >> >> >>> My only suggestion is to look at the OS X readme that comes with the >>> RMagick tarball and follow it exactly step-by-step. It took me a few >>> tries, but I eventually figured it out. >>> >>> -PJ >>> http://pjhyett.com >>> >>> On 9/2/05, Pedro Valentini <pedro-p14LI7ZcAE/pVLaUnt/cCQC/G2K4zDHf@public.gmane.org> wrote: >>> >>> >>>> Hi, >>>> I''m installed ImageMagick and RMagick in an OS X and when I try to >>>> require RMagick lib I get this error: >>>> >>>> irb(main):001:0> require ''RMagick'' >>>> dyld: ruby version mismatch for library: >>>> /usr/X11R6/lib/libfreetype.6.dylib (compatibility version of user: >>>> 10.0.0 greater than library''s version: 6.3.0) >>>> Trace/BPT trap >>>> >>>> Someone know what can be wrong? >>>> Thank you >>>> >>>> -- >>>> >>>> Pedro C. Valentini >>>> pedro-p14LI7ZcAE/pVLaUnt/cCQC/G2K4zDHf@public.gmane.org >>>> +55 (21) 8708-8035 >>>> >>>> >>>> _______________________________________________ >>>> Rails mailing list >>>> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >>>> http://lists.rubyonrails.org/mailman/listinfo/rails >>>> >>>> >>>> >>> _______________________________________________ >>> Rails mailing list >>> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >>> http://lists.rubyonrails.org/mailman/listinfo/rails >>> >>> >> >> _______________________________________________ >> Rails mailing list >> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >> http://lists.rubyonrails.org/mailman/listinfo/rails >> >> > > -- > > Pedro C. Valentini > pedro-p14LI7ZcAE/pVLaUnt/cCQC/G2K4zDHf@public.gmane.org > +55 (21) 8708-8035 > >