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

Well, do you have "libintl" library installed or not? If you do, what is the full path of the directory in which that was installed? Also, mention your operating system for others to suggest the way(s) to install the missing software needed.

  • Comment on Re: Install of Locale:gettext failing due to missing libintl

Replies are listed 'Best First'.
Re^2: Install of Locale:gettext failing due to missing libintl
by T-Fen (Acolyte) on Oct 28, 2014 at 14:30 UTC

    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

      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