Custom Query (204 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (13 - 15 of 204)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Ticket Resolution Summary Owner Reporter
#208 fixed grep --include and --exclude options are not case-insensitve Steven Levine
Description

grep -r --include=*.c foo will not check files named *.C because the fnmatch() call is case-sensitive

To change this behavior, modify:

lib\exclude.c:384

bool matched = ((*matcher) (pattern, f, options) == 0);

to

bool matched = ((*matcher) (pattern, f, options | FNM_CASEFOLD) == 0);

#207 duplicate ippfind utility not available; cups cannot locate IPP printer Lewis Rosenthal
Description

CUPS depends upon ippfind to locate IPP printers by name. When ippfind is not available, CUPS issues warnings.

Different Linux distros bundle ippfind in different ways (some with cups-ipp-utils, alongside ipptool, and some separately). I don't have a great suggestion for packaging this offhand.

I'm marking this as a task, because our current CUPS solution - which otherwise works quite well - is just slightly incomplete without this piece.

#206 fixed Libavcodec crashes due to unaligned variable dryeo
Description

Using avcode56.dll, Firefox crashes when playing H264 videos with the OS/4 kernel. This is due to variable not aligned for AVX and explained here, http://www.voidcn.com/article/p-vtipwtsk-cu.html Fix is to add --extra-cflags='-fno-common' to the configure command line. Tested with avcode57.dll. Compilation also fails with missing poll symbols, I'll attach a patch to add libcx support as well.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Note: See TracQuery for help on using queries.