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

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.

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

    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)

        Man, the locate database seems too old.

        Does /usr/local/lib/libintl.8.dylib exist?