Compiling deliverquota.c
gcc -traditional-cpp -Wall -I./.. -I.. -o deliverquota deliverquota.o libmaildir.a ../rfc822/librfc822.a ../numlib/libnumlib.a
ld: ../numlib/libnumlib.a(strhdevt.o) literal C string section (__TEXT,__cstring) does not end with a '\0'
ld: ../numlib/libnumlib.a(strhinot.o) literal C string section (__TEXT,__cstring) does not end with a '\0'
make[2]: *** [deliverquota] Error 1
make[1]: *** [all] Error 2
make: *** [all-recursive] Error 1
Can anyone tell me how to fix the string errors in "numlib/libnumlib.a" which ld is reporting?
Please let me know if you have any ideas! Thank you!
In numlib/strhdevt.c replace:
static const char xdigit[16]="0123456789ABCDEF";
with
static const char xdigit[]="0123456789ABCDEF";
Same change in the other file.
------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ courier-users mailing list [EMAIL PROTECTED] Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users
