mirror of https://github.com/GNOME/gimp.git
see plug-ins/perl/Changes
This commit is contained in:
parent
81e78f22cf
commit
dccabf1e51
|
@ -24,6 +24,7 @@ API generalization
|
|||
gimp_desaturate -> drawable
|
||||
|
||||
bugs
|
||||
* try to work around the redhat-undef $fh => no close problem.
|
||||
* .pot file -> add to dist.
|
||||
* damnit libintl crazy shit
|
||||
* font_text with negative size? bug report #5523
|
||||
|
|
|
@ -1395,6 +1395,10 @@ fi
|
|||
done
|
||||
|
||||
|
||||
echo $ac_n "checking for intelligent life""... $ac_c" 1>&6
|
||||
echo "configure:1400: checking for intelligent life" >&5
|
||||
echo "$ac_t""not found" 1>&6
|
||||
|
||||
if test "x$GCC" = xyes; then
|
||||
nowarn="-Wno-parentheses -Wno-unused -Wno-uninitialized"
|
||||
GIMP_CFLAGS="$GIMP_CFLAGS $nowarn"
|
||||
|
@ -1421,12 +1425,12 @@ fi
|
|||
for ac_func in _exit
|
||||
do
|
||||
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
|
||||
echo "configure:1425: checking for $ac_func" >&5
|
||||
echo "configure:1429: checking for $ac_func" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
#line 1430 "configure"
|
||||
#line 1434 "configure"
|
||||
#include "confdefs.h"
|
||||
/* System header to define __stub macros and hopefully few prototypes,
|
||||
which can conflict with char $ac_func(); below. */
|
||||
|
@ -1449,7 +1453,7 @@ $ac_func();
|
|||
|
||||
; return 0; }
|
||||
EOF
|
||||
if { (eval echo configure:1453: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
||||
if { (eval echo configure:1457: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
||||
rm -rf conftest*
|
||||
eval "ac_cv_func_$ac_func=yes"
|
||||
else
|
||||
|
|
|
@ -2,6 +2,9 @@ AC_CHECK_FUNCS(vsnprintf,AC_DEFINE(HAVE_VSNPRINTF),[
|
|||
AC_MSG_WARN(vsnprintf not found.. I hope you are using gcc...)
|
||||
])
|
||||
|
||||
AC_MSG_CHECKING(for intelligent life)
|
||||
AC_MSG_RESULT(not found)
|
||||
|
||||
dnl disable some warnings I don't want to see
|
||||
if test "x$GCC" = xyes; then
|
||||
nowarn="-Wno-parentheses -Wno-unused -Wno-uninitialized"
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
Thu Apr 6 22:38:51 CEST 2000 Marc Lehmann <pcg@goof.com>
|
||||
|
||||
* Makefile.PL: msgmerge will no longer be called under any
|
||||
circumstances (except for update.sh or make update-po).
|
||||
|
||||
Wed Apr 5 06:02:58 CEST 2000 Marc Lehmann <pcg@goof.com>
|
||||
|
||||
* Makefile.PL: possible fix for #8148. basically, nothing at all
|
||||
|
|
|
@ -13,10 +13,8 @@ if ($MSGFMT =~ /./ && $MSGFMT ne "no") {
|
|||
$uninstall .= " \$(RM_F) \$(datadir)/locale/$po/LC_MESSAGES/gimp-perl.mo\n";
|
||||
$mofiles .= " $po.gmo";
|
||||
}
|
||||
$alltarget = "update-po";
|
||||
} else {
|
||||
print " skipped";
|
||||
$alltarget = "";
|
||||
}
|
||||
print "\n";
|
||||
|
||||
|
|
Loading…
Reference in New Issue