1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/chinese/mkisofs/files/patch-ae
Jing-Tang Keith Jang 4d10c5d235 New port: mkisofs
mkisofs is a pre-mastering program that generates binary ISO9660
filesystem image.  Users can then write the image to devices like
CD-R or CD-RW.  This port can also generate Chinese Big5 filenames
on Joliet filesystems.  Use the -J option to activate it.

Although it works flawlessly, further improvements are possible:
1. Accept GB(Simplified Chinese) filenames also.
2. Upgrade to mkisofs 1.13.  1.13 uses a better structure to manage
   I18N, which is (almost all) borrowed from Linux kernel's fs code.
2000-11-07 04:50:24 +00:00

20 lines
367 B
Plaintext

--- name.c.orig Fri Mar 3 15:33:43 2000
+++ name.c Fri Mar 3 15:45:25 2000
@@ -213,6 +213,7 @@
}
if(current_length < 30)
{
+/*
if( *pnt < 0 )
{
*result++ = '_';
@@ -221,6 +222,8 @@
{
*result++ = (islower((unsigned char)*pnt) ? toupper((unsigned char)*pnt) : *pnt);
}
+*/
+ *result++ = *pnt;
}
}
else