Re: [openbsd] 2.02-beta3: build fails - getroot.c:(.text+0x2b): undefined reference to `getrawpartition'

2016-03-12 Thread Andrei Borzenkov
12.03.2016 22:54, Jiri B пишет: > On Sat, Mar 12, 2016 at 09:29:15PM +0300, Andrei Borzenkov wrote: >>> cc -Wall -W -Wshadow -Wpointer-arith -Wundef -Wchar-subscripts -Wcomment >>> -Wdeprecated-declarations -Wdisabled-optimization -Wdiv-by-zero >>> -Wfloat-equal -Wformat-extra-args -Wformat-secur

Re: [openbsd] 2.02-beta3: build fails - getroot.c:(.text+0x2b): undefined reference to `getrawpartition'

2016-03-12 Thread Jiri B
On Sat, Mar 12, 2016 at 09:29:15PM +0300, Andrei Borzenkov wrote: > > cc -Wall -W -Wshadow -Wpointer-arith -Wundef -Wchar-subscripts -Wcomment > > -Wdeprecated-declarations -Wdisabled-optimization -Wdiv-by-zero > > -Wfloat-equal -Wformat-extra-args -Wformat-security -Wformat-y2k -Wimplicit > > -

Re: [openbsd] 2.02-beta3: build fails - getroot.c:(.text+0x2b): undefined reference to `getrawpartition'

2016-03-12 Thread Andrei Borzenkov
12.03.2016 19:57, Jiri B пишет: > Hi, > > I'm trying to build grub-2.02-beta3 on OpenBSD 5.9 amd64 and build > fails: > > cc -Wall -W -Wshadow -Wpointer-arith -Wundef -Wchar-subscripts -Wcomment > -Wdeprecated-declarations -Wdisabled-optimization -Wdiv-by-zero -Wfloat-equal > -Wformat-extra-arg

[openbsd] 2.02-beta3: build fails - getroot.c:(.text+0x2b): undefined reference to `getrawpartition'

2016-03-12 Thread Jiri B
Hi, I'm trying to build grub-2.02-beta3 on OpenBSD 5.9 amd64 and build fails: cc -Wall -W -Wshadow -Wpointer-arith -Wundef -Wchar-subscripts -Wcomment -Wdeprecated-declarations -Wdisabled-optimization -Wdiv-by-zero -Wfloat-equal -Wformat-extra-args -Wformat-security -Wformat-y2k -Wimplicit -Wi

[bug #41295] Optimize PNGs

2016-03-12 Thread Ville Skyttä
Follow-up Comment #1, bug #41295 (project grub): ...and even a bit more can be achieved with zopflipng: $ for file in $(find . -name *.png) ; do zopflipng -m $file $file.new && mv $file.new $file ; done [...] $ du -bc $(find . -name "*.png") | tail -n 1 1363348 total __