diff options
author | Mikhail Teterin <mi@FreeBSD.org> | 2005-07-07 21:38:02 +0000 |
---|---|---|
committer | Mikhail Teterin <mi@FreeBSD.org> | 2005-07-07 21:38:02 +0000 |
commit | 89dea9c29b48b292ebd5ea574f5860da93410b7c (patch) | |
tree | 916fcf13647d536242eb7608c9fb33412222887b /mail/elm+ME/files/patch-iso2022_map.c | |
parent | WindowMaker dockapp for displaying signal strenghts of WLAN Adapters (diff) |
Update from elm-2.4ME+119 to elm-2.4ME+121h. Install the auxiliary
shared libraries into ${PREFIX}/lib thus making 000.elm.sh unneeded.
Add patches, that allow warning-free compilation.
Add a patch, that removes the delay on every "metamail not needed"
notification.
Change scripts/pre-configure to allow use of nl_langinfo().
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=138680
Diffstat (limited to 'mail/elm+ME/files/patch-iso2022_map.c')
-rw-r--r-- | mail/elm+ME/files/patch-iso2022_map.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mail/elm+ME/files/patch-iso2022_map.c b/mail/elm+ME/files/patch-iso2022_map.c new file mode 100644 index 000000000000..c1e23da8e3d1 --- /dev/null +++ b/mail/elm+ME/files/patch-iso2022_map.c @@ -0,0 +1,12 @@ +127+128 is 255, which no `char' can exceed. This leads to a compiler +warning... + +--- lib/iso2022_map.c Tue Mar 30 11:38:43 2004 ++++ lib/iso2022_map.c Wed Jul 6 23:43:14 2005 +@@ -926,5 +926,5 @@ + if (iso2022_94 == Mx->type || + iso2022_96 == Mx->type) { +- if (ch < 32 + 128 || ch > 127 + 128) { ++ if (ch < 32 + 128) { + DPRINT(Debug,10,(&Debug, + "map_unicode_to_ISO2022_word_1: char %c (unicode %u) out of range (type iso2022_94 or iso2022_96, PF_BUILTIN_upper)", |