figlet/figlet.patch

Sat, 06 Oct 2012 16:24:01 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 06 Oct 2012 16:24:01 +0200
changeset 727
914043724d20
permissions
-rw-r--r--

Update to new vendor software version and adjust patch code accordingly.
Unfortunately the vendor has apparently failed to properly test this
release which depends on missing object symbols in libsasl2.a(common.o):

undefined reference to `sasl_randcreate'
undefined reference to `sasl_mkchal'
undefined reference to `sasl_utf8verify'
undefined reference to `sasl_rand'
undefined reference to `sasl_churn'
undefined reference to `sasl_encode64'
undefined reference to `sasl_decode64'
undefined reference to `sasl_erasebuffer'
undefined reference to `sasl_randfree'
undefined reference to `sasl_strlower'
undefined reference to `get_fqhostname'

...yet to be patched.

michael@512 1 Index: utf8.h
michael@512 2 --- utf8.h.orig 2012-08-10 11:27:29.714031512 +0200
michael@512 3 +++ utf8.h 2012-08-10 11:29:26.743204276 +0200
michael@512 4 @@ -27,6 +27,18 @@
michael@512 5 #define UTF8_IGNORE_ERROR 0x01
michael@512 6 #define UTF8_SKIP_BOM 0x02
michael@512 7
michael@512 8 +#ifndef __BEGIN_DECLS
michael@512 9 +#undef __BEGIN_DECLS
michael@512 10 +#undef __END_DECLS
michael@512 11 +#ifdef __cplusplus
michael@512 12 +# define __BEGIN_DECLS extern "C" {
michael@512 13 +# define __END_DECLS }
michael@512 14 +#else
michael@512 15 +# define __BEGIN_DECLS /* empty */
michael@512 16 +# define __END_DECLS /* empty */
michael@512 17 +#endif
michael@512 18 +#endif /* __BEGIN_DECLS */
michael@512 19 +
michael@512 20 __BEGIN_DECLS
michael@512 21
michael@512 22 size_t utf8_to_wchar(const char *in, size_t insize, wchar_t *out,

mercurial