freebsd-ports/net/minidlna/files/patch-utils-mpo
Mikhail Teterin 4126e43dd3 Update to 1.0.24. Remove some of the patches already incorporated by
the author. Add some new ones.

Add "rescan" subcommand to the startup script:

Obtained from:	Rafal Szkodzinski

Replace the pinguin icon with Beastie:

Obtained from:	Vladimir B. Grebenschikov

Thanks to:	above contributors and other testers.
2012-05-08 02:09:19 +00:00

15 lines
418 B
Text

Submitted by Vladimir B. Grebenschikov this patch recognizes Samsung's
images as JPEGs.
--- utils.c 2012-01-04 14:16:46.000000000 +0000
+++ utils.c 2012-01-09 00:29:31.000000000 +0000
@@ -261,7 +261,8 @@
int
is_image(const char * file)
{
- return (ends_with(file, ".jpg") || ends_with(file, ".jpeg"));
+ return (ends_with(file, ".jpg") || ends_with(file, ".jpeg") ||
+ ends_with(file, ".mpo"));
}
int