in reply to Re: Install of Locale:gettext failing due to missing libintl
in thread Install of Locale:gettext failing due to missing libintl

Running Mac OSX 10.10 (Yosimite). It looks like I have libintl per the below:

$ locate libintl /Applications/Adium.app/Contents/Frameworks/libintl.framework /Applications/Adium.app/Contents/Frameworks/libintl.framework/Headers /Applications/Adium.app/Contents/Frameworks/libintl.framework/Resource +s /Applications/Adium.app/Contents/Frameworks/libintl.framework/Versions /Applications/Adium.app/Contents/Frameworks/libintl.framework/Versions +/8 /Applications/Adium.app/Contents/Frameworks/libintl.framework/Versions +/8/Headers /Applications/Adium.app/Contents/Frameworks/libintl.framework/Versions +/8/Resources /Applications/Adium.app/Contents/Frameworks/libintl.framework/Versions +/8/Resources/English.lproj /Applications/Adium.app/Contents/Frameworks/libintl.framework/Versions +/8/Resources/English.lproj/InfoPlist.strings /Applications/Adium.app/Contents/Frameworks/libintl.framework/Versions +/8/Resources/Info.plist /Applications/Adium.app/Contents/Frameworks/libintl.framework/Versions +/8/libintl /Applications/Adium.app/Contents/Frameworks/libintl.framework/Versions +/Current /Applications/Adium.app/Contents/Frameworks/libintl.framework/libintl /Applications/OmniGraffle Professional 5.app/Contents/lib/libintl.dyli +b /Applications/Senuti.app/Contents/Frameworks/RedMobile.framework/Versi +ons/A/Frameworks/libintl.dylib /Applications/Stellarium.app/Contents/Frameworks/i386/libintl.8.dylib /Applications/VMware Fusion.app/Contents/Frameworks/libintl.8.0.2.dyli +b /Previous System/usr/local/share/doc/libintl /private/var/db/receipts/org.rudix.pkg.libintl.bom /private/var/db/receipts/org.rudix.pkg.libintl.plist /usr/local/Cellar/gettext/0.19.3/include/libintl.h /usr/local/Cellar/gettext/0.19.3/lib/libintl.8.dylib /usr/local/Cellar/gettext/0.19.3/lib/libintl.a /usr/local/Cellar/gettext/0.19.3/lib/libintl.dylib /usr/local/Cellar/gettext/0.19.3/share/gettext/intl/libintl.rc /usr/local/lib/libintl.8.dylib /usr/local/lib/libintl.a /usr/local/lib/libintl.dylib /usr/local/share/doc/libintl /usr/local/share/doc/libintl/AUTHORS /usr/local/share/doc/libintl/COPYING /usr/local/share/doc/libintl/ChangeLog /usr/local/share/doc/libintl/INSTALL /usr/local/share/doc/libintl/NEWS /usr/local/share/doc/libintl/README /usr/local/share/doc/libintl/README.woe32

Thanks

Replies are listed 'Best First'.
Re^3: Install of Locale:gettext failing due to missing libintl
by Anonymous Monk on Oct 28, 2014 at 17:19 UTC

    If ...

    nm -u /usr/local/lib/libintl.dylib | fgrep gettext

    ... shows the text "gettext", then you may need to reinstall|update|change the present libintl files.

    Else, could you share the output of

    perl Makefile.PL \ | egrep '(LDDLFLAGS|LDFLAGS).+/usr/local/lib' Makefile

    ... ? If /usr/local/lib is missing from above, try to install manually after setting $CONFIGURE{'LIBS'} in Makefile.PL or LDDLFLAGSto set the library search path.

      Correction: change ...

      perl Makefile.PL \ | egrep '(LDDLFLAGS|LDFLAGS).+/usr/local/lib' Makefile

      ... to ...

      perl Makefile.PL egrep '(LDDLFLAGS|LDFLAGS).+/usr/local/lib' Makefile

        Running the first command above, I get:

        $ nm -u /usr/local/lib/libintl.dylib | fgrep gettext error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefa +ult.xctoolchain/usr/bin/nm: can't open file: /usr/local/lib/libintl.d +ylib (No such file or directory)