#1099. Fix submitted.

v0.27.3
Robin Mills 10 years ago
parent 098715ee83
commit e07c881fcf

@ -318,6 +318,18 @@ case "$host_os" in
LDFLAGS="$LDFLAGS -ldl" ;; LDFLAGS="$LDFLAGS -ldl" ;;
esac esac
# 1099
for u in gettext msginit msgmerge msgfmt msgconv msgfilter ; do
if test "$USE_NLS" = "yes" ; then
which "$u" 2>/dev/null > /dev/null
if test "$?" != "0" ; then
echo "*** utility ${u} is not on the PATH Disabling NLS support ***"
USE_NLS=no
fi
fi
done
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
# Create output files. # Create output files.
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
@ -362,8 +374,8 @@ yes) echo "-- Native language support........ YES" ;;
*) echo "-- Native language support........ NO" *) echo "-- Native language support........ NO"
echo "" echo ""
echo "gettext is required for native language support. Make sure the" echo "gettext is required for native language support. Make sure the"
echo "gettext header files are installed. You can get gettext from" echo "gettext header files and utilities are installed. "
echo "http://www.gnu.org/software/gettext/" echo "You can get gettext from http://www.gnu.org/software/gettext/"
echo "" ;; echo "" ;;
esac esac

Loading…
Cancel
Save