diff options
| author | Sam Varshavchik | 2014-01-12 13:26:54 -0500 | 
|---|---|---|
| committer | Sam Varshavchik | 2014-01-12 13:26:54 -0500 | 
| commit | 40ed34ef54ac459116e2a37b63955c75a18a9441 (patch) | |
| tree | b4239ed6454f45853de0be3c5a8266e310f7f0b1 /maildrop/mailbot.c | |
| parent | a307e734a37763fc25778adffc2cd5c0d0390555 (diff) | |
| download | courier-libs-40ed34ef54ac459116e2a37b63955c75a18a9441.tar.bz2 | |
Reconfigure against the standalone unicode library.
Diffstat (limited to 'maildrop/mailbot.c')
| -rw-r--r-- | maildrop/mailbot.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/maildrop/mailbot.c b/maildrop/mailbot.c index dc8d43f..5fbb860 100644 --- a/maildrop/mailbot.c +++ b/maildrop/mailbot.c @@ -7,7 +7,7 @@  #include "dbobj.h"  #include "liblock/config.h"  #include "liblock/liblock.h" -#include "unicode/unicode.h" +#include <unicode.h>  #include "numlib/numlib.h"  #include <string.h>  #include <stdlib.h> @@ -606,9 +606,9 @@ int main(int argc, char **argv)  			if (optarg && *optarg)  			{ -				char *p=libmail_u_convert_tobuf("", +				char *p=unicode_convert_tobuf("",  								optarg, -								libmail_u_ucs4_native, +								unicode_u_ucs4_native,  								NULL);  				if (!p) @@ -887,9 +887,9 @@ int main(int argc, char **argv)  				char *p=NULL;  				if (charset) -					p=libmail_u_convert_tobuf("", +					p=unicode_convert_tobuf("",  								  charset, -								  libmail_u_ucs4_native, +								  unicode_u_ucs4_native,  								  NULL);  				if (!p) | 
