for 32bit: uninstalled ftgl reinstalled with : brew install ftgl --32-bit (linked)
./configure --enable-fat-binary=i386 --with-pd=/Applications/Pd-0.47-0test2.app/Contents/Resources --without-QuickTime-framework --without-Carbon-framework *PKG_FTGL_CFLAGS="$(pkg-config --cflags ftgl freetype2)" PKG_FTGL_LIBS="$(pkg-config --libs ftgl freetype2)"*
make remains : make CPPFLAGS=$(pkg-config --cflags freetype2)
still unable to load & 0.45-4 still shows bitmapfont error
On Wed, May 4, 2016 at 5:46 PM, IOhannes m zmölnig zmoelnig@iem.at wrote:
On 05/01/2016 12:00 AM, j-p k wrote:
./configure --enable-fat-binary=i386 --with-pd=/Applications/Pd-0.47-0test2.app/Contents/Resources --without-QuickTime-framework --without-Carbon-framework
make CPPFLAGS=$(pkg-config --cflags freetype2)
that's probably wrong and you should add the freetype2-pkgconfig output to the configure process, rather than only the build process. either with $ ./configure PKG_FTGL_CFLAGS="$(pkg-config --cflags ftgl freetype2) \ PKG_FTGL_LIBS="$(pkg-config --libs ftgl freetype2) ...
or something like: $ ./configure CPPFLAGS="$(pkg-config --cflags freetype2) \ LIBS="$(pkg-config --libs freetype2) ...
personally i prefer the first option, as it adds a dependency on freetype only to the binaries that use FTGL.
gfmsdr IOhannes
GEM-dev mailing list GEM-dev@lists.iem.at https://lists.puredata.info/listinfo/gem-dev