require bind_textdomain_codeset(). Fixes bug #362983.

2006-12-07  Sven Neumann  <sven@gimp.org>

	* configure.in: require bind_textdomain_codeset(). Fixes bug #362983.
This commit is contained in:
Sven Neumann 2006-12-07 11:33:26 +00:00 committed by Sven Neumann
parent e5893265b1
commit 370980c479
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-12-07 Sven Neumann <sven@gimp.org>
* configure.in: require bind_textdomain_codeset(). Fixes bug #362983.
2006-12-07 Sven Neumann <sven@gimp.org>
* app/tools/gimp-tools.c (gimp_tools_save): reverted my last change;

View File

@ -430,7 +430,10 @@ AC_MSG_RESULT($have_glib_2_13)
dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.
gimp_save_LIBS=$LIBS
LIBS="$LIBS $GLIB_LIBS"
AC_CHECK_FUNCS(bind_textdomain_codeset)
AC_CHECK_FUNCS(bind_textdomain_codeset,,
AC_MSG_ERROR([
*** Check for bind_textdomain_codeset() failed! This is required.
]))
LIBS=$gimp_save_LIBS