Hi, In the Fedora libusbx packages we ship example/*.c as part of the development documentation. ATM we run this script on these files because they are not UTF-8:
for i in examples/*.c; do iconv -f ISO-8859-1 -t UTF-8 -o $i.new $i touch -r $i $i.new mv $i.new $i done We would like to get rid of this script from our package build process :) I think the problem is the © '(c)' sign in the headers, I see 2 possible solutions: 1) Stick to ASCII only, so replace '©' with '(c)' 2) Convert the files to UTF-8 in our git repo and tarbals So what do you think is the best solution? Regards, Hans ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ libusbx-devel mailing list libusbx-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/libusbx-devel