monotone-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Monotone-devel] Re: Tests passing!


From: Lapo Luchini
Subject: [Monotone-devel] Re: Tests passing!
Date: Thu, 01 Mar 2007 12:12:32 +0100
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b4) Gecko/20050908 Thunderbird/1.4 Mnenhy/0.7.4.0

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Lapo Luchini wrote:
>> This fails because it relies on //IGNORE//TRANSLIT (or
>> //IGNORE,TRANSLIT, as drepper claims - whatever): gnu iconv feature
> That's my nvm.lapo.i18n branch fault - I definitely have to check that
> in "configure" and use conditionally. Will do so tomorrow morning on the
> bus (8:15-9:00 CET) and hopefully commit it at work shortly after.

This OUGHT to do it, but it doesn't (no wonder, because the error was at
the LAST character of the transliteration, not at the iconv_open, when
using libc's iconv).
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Cygwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iQIcBAEBAgAGBQJF5rUfAAoJELBiMTth2oCD7pMP/1qvOIPJAup2c9NThEfLjUSM
U1tDVxXGVyT/m1t+4iQ3ZAiHNA9QHv/LKOpc/NCfg0hnqrT3XtAO4ft9AmTjO2R2
5QidBb3XZIP0mOkA7XVrETVPxkPvEf8aaF4LUq7o6wdJJX4GBnwiijR1hlGOodDl
QltLDojP/D8Z5L9CPyDxRtXAgBRYrtAVUNOZLEHEVjMb5b1m0mfMgqF6BH4y6DGo
YICmNmiCrEPHJ4xjsuYg/Kms+6W1lvr84Az5Ccq/CMh9xp7SkKgGyyEFyncN2Njc
89VASZp6G7sBXxdKPnYYZ0fZWrjrYT7wy0N8gj3YYy4WF1wR3iOapJMwAzi410/y
D2L70wOXugcZljZYZmPau6jTyzvrTA7wQF8W3vGVoOVJVpE1lRyDN7iMgPYIHy7i
bntRsTO6XwCdb53EHvnnTF2AJIilKq4HKz8aFFtUp93FB7AHidwMBg5J1hQeM59l
QpH6IIQ/ssu+9hUm7Pvv5MizfPjNTfszYR0+59KfmkXr2pzffFzfvUfNRRwD5jUc
WbpZ+J7dlDND+NFGqUYOpuAwUhfLHTcGTuW/0ZT2u2OgnR9K+Qck1/kT0BK4var1
KJpx0DP8vMj6GISShDERJB4nJL8VJiRvEeSHB9jMPX1tUjH8wVPJ6Mss3ajtM/lp
slX80qxXs4T5qU6CHO+S
=E4/J
-----END PGP SIGNATURE-----
AC_DEFUN([AC_FUNC_ICONV_TRANSLIT],
[AC_CACHE_CHECK([if iconv supports //IGNORE//TRANSLIT],
        ac_cv_iconv_translit, [
        AC_TRY_RUN([
#include <iconv.h>

int main()
{
  return iconv_open("ASCII//IGNORE//TRANSLIT", "UTF8") == (iconv_t)(-1);
}
],
                ac_cv_iconv_translit=yes,
                ac_cv_iconv_translit=no,
                ac_cv_iconv_translit=no)
        ])
if test "$ac_cv_iconv_translit" = "yes"; then
  AC_DEFINE(ICONV_TRANSLIT, 1, [Define if iconv supports //IGNORE//TRANSLIT.])
fi])

reply via email to

[Prev in Thread] Current Thread [Next in Thread]