]> git.pld-linux.org Git - packages/freetype.git/blob - freetype-nospaces.patch
added SysVinit to buildreq (it guess unix if /sbin/init /sbin/halt exist)
[packages/freetype.git] / freetype-nospaces.patch
1 --- freetype-1.3.1/ttmkfdir/ttmkfdir.c.nospaces Wed Jan 12 22:57:36 2000
2 +++ freetype-1.3.1/ttmkfdir/ttmkfdir.c  Wed Jan 12 23:05:12 2000
3 @@ -1165,7 +1165,8 @@
4         if (!isascii (string[i])) {
5             return NULL;
6         }
7 -       name_buffer[name_len++] = (string[i] == '-') ? '_' : string[i];
8 +       name_buffer[name_len] = (string[i] == '-') ? '_' : string[i];
9 +       name_buffer[name_len++] = (string[i] == ' ') ? '_' : string[i];
10      }
11  
12      name_buffer[name_len] = '\0';
This page took 0.024703 seconds and 3 git commands to generate.