<div dir="ltr">for 32bit:<div>uninstalled ftgl<br></div><div><div>reinstalled with : brew install ftgl --32-bit </div><div>(linked)</div><div>







<p class="">./configure --enable-fat-binary=i386 --with-pd=/Applications/Pd-0.47-0test2.app/Contents/Resources --without-QuickTime-framework --without-Carbon-framework <b><span style="font-size:12.8px">PKG_FTGL_CFLAGS="$(pkg-config --cflags ftgl freetype2)"</span><span style="font-size:12.8px">  PKG_FTGL_LIBS="$(pkg-config --libs ftgl freetype2)"</span></b></p>







<p class="">make remains : make CPPFLAGS=$(pkg-config --cflags freetype2)</p><p class="">still unable to load & 0.45-4 still shows bitmapfont error</p>







</div><div><br></div><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, May 4, 2016 at 5:46 PM, IOhannes m zmölnig <span dir="ltr"><<a href="mailto:zmoelnig@iem.at" target="_blank">zmoelnig@iem.at</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On 05/01/2016 12:00 AM, j-p k wrote:<br>
</span><span class="">> ./configure --enable-fat-binary=i386<br>
> --with-pd=/Applications/Pd-0.47-0test2.app/Contents/Resources<br>
> --without-QuickTime-framework --without-Carbon-framework<br>
><br>
> make CPPFLAGS=$(pkg-config --cflags freetype2)<br>
<br>
</span>that's probably wrong and you should add the freetype2-pkgconfig output<br>
to the configure process, rather than only the build process.<br>
either with<br>
$ ./configure PKG_FTGL_CFLAGS="$(pkg-config --cflags ftgl freetype2) \<br>
     PKG_FTGL_LIBS="$(pkg-config --libs ftgl freetype2) ...<br>
<br>
or something like:<br>
$ ./configure CPPFLAGS="$(pkg-config --cflags freetype2) \<br>
     LIBS="$(pkg-config --libs freetype2) ...<br>
<br>
personally i prefer the first option, as it adds a dependency on<br>
freetype only to the binaries that use FTGL.<br>
<br>
gfmsdr<br>
<span class="HOEnZb"><font color="#888888">IOhannes<br>
<br>
</font></span><br>_______________________________________________<br>
GEM-dev mailing list<br>
<a href="mailto:GEM-dev@lists.iem.at">GEM-dev@lists.iem.at</a><br>
<a href="https://lists.puredata.info/listinfo/gem-dev" rel="noreferrer" target="_blank">https://lists.puredata.info/listinfo/gem-dev</a><br>
<br></blockquote></div><br></div>