Search found 7 matches

by nros
2017-10-06T07:20:23-07:00
Forum: Bugs
Topic: libfpx cve fixes
Replies: 1
Views: 3775

libfpx cve fixes

I have made some patches for libfpx that fixes CVE-2017-12921 and CVE-2017-12925 and possibly CVE-2017-12920. The patches are available at http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/graphics/libfpx/patches/?only_with_tag=MAIN I have tested the patches against Agustinos payloads for these CVEs and th...
by nros
2017-07-04T23:50:05-07:00
Forum: Bugs
Topic: libfpx header not self contained
Replies: 3
Views: 5201

Re: libfpx header not self contained

Also related to libfpx is that the pdf files in the doc directory are broken. I can't read them with any pdf reader I tested. Just to point it out.
by nros
2017-07-04T07:25:51-07:00
Forum: Bugs
Topic: libfpx header not self contained
Replies: 3
Views: 5201

Re: libfpx header not self contained

Thanks.
by nros
2017-07-04T03:53:12-07:00
Forum: Bugs
Topic: libfpx header not self contained
Replies: 3
Views: 5201

libfpx header not self contained

fpxlib.h in libfpx does use size_t but does not include this type. compiling a program like: #include <fpxlib.h> int main(){return 0;} breaks with messages about size_t missing. including stddef.h fixes this. a patch is available at: https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=blob_...
by nros
2015-12-28T07:35:37-07:00
Forum: Bugs
Topic: patches for libfpx to make it build on NetBSD
Replies: 4
Views: 4471

Re: patches for libfpx to make it build on NetBSD

Thanks a lot.
by nros
2015-12-28T04:40:31-07:00
Forum: Bugs
Topic: patches for libfpx to make it build on NetBSD
Replies: 4
Views: 4471

Re: patches for libfpx to make it build on NetBSD

I have looked at libfpx-1.3.1-5 and most of the patches are applied except removal of the inclusion of fpxlib-config.h in fpxlib.h. Now it references the file but does not install it. I have checked where __unix is used in other places in the source and replaced it with _UNIX for more correct operat...
by nros
2015-12-27T11:36:15-07:00
Forum: Bugs
Topic: patches for libfpx to make it build on NetBSD
Replies: 4
Views: 4471

patches for libfpx to make it build on NetBSD

HI, I have been trying to build libfpx on NetBSD and made some patches to make it build. One problem I came across was that NetBSD doesn't define __unix. The build system defines _UNIX so I use that instead. Correct me if it is incorrectly used. NetBSD does not have statfs but it has posix statvfs s...