Commit 83a27288 authored by Eric Petit's avatar Eric Petit

configure.ac.in: fixed static linking with libintl and libiconv

parent d8e92b78
...@@ -182,8 +182,9 @@ if test "${nls_cv_force_use_gnu_gettext}" = "yes"; then ...@@ -182,8 +182,9 @@ if test "${nls_cv_force_use_gnu_gettext}" = "yes"; then
else else
AC_CHECK_FUNCS(textdomain,,[ AC_CHECK_FUNCS(textdomain,,[
AC_CHECK_LIB(intl,textdomain, AC_CHECK_LIB(intl,textdomain,
LDFLAGS_vlc="${LDFLAGS_vlc} -lintl" LDFLAGS_vlc="${LDFLAGS_vlc} ${LIBINTL}"
LDFLAGS_plugins="${LDFLAGS_plugins} -lintl" LDFLAGS_plugins="${LDFLAGS_plugins} ${LIBINTL}",,
${LIBINTL}
) )
]) ])
fi fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment