2012-02-02 22:35:22 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Fix build on NetBSD 5.0. From Robert Elz in PR 45888.
|
2012-01-28 12:00:01 by Thomas Klausner | Files touched by this commit (4) |
Log message:
Update to 1.2.12. Add webp support. Update LICENSE (see below).
While here, remove png/tiff/jpeg includes from buildlink3.mk
since they are hidden by the library (library not linked against
them, headers not included in public headers). Recursive bump
coming next.
1.2.12:
Sam Lantinga - Thu Jan 19 23:18:09 EST 2012
* Fixed regression in 1.2.11 loading 8-bit PNG images with libpng
1.2.11:
Sam Lantinga - Sat Jan 14 17:54:38 EST 2012
* Fixed loading 8-bit PNG images on Mac OS X
Sam Lantinga - Sat Dec 31 09:35:40 EST 2011
* SDL_image is now under the zlib license
Michael Bonfils - Mon Nov 28 21:46:00 EST 2011
* Added WEBP image support
Thomas Klausner - Wed Jan 19 19:31:25 PST 2011
* Fixed compiling with libpng 1.4
Sam Lantinga - Mon Jan 10 12:09:57 2011 -0800
* Added Android.mk to build on the Android platform
Sam Lantinga - Mon May 10 22:42:53 PDT 2010
* Fixed loading HAM6 images with stencil mask
Mark Tucker - Fri, 27 Nov 2009 12:38:21 -0500
* Fixed bug loading 15 and 16 bit BMP images
|
2011-05-27 18:23:53 by Hans Rosenfeld | Files touched by this commit (2) |
Log message:
Add missing png_set_longjmp_fn assignment to fix some segfaults.
|
2011-01-19 22:24:10 by Matthias Drochner | Files touched by this commit (2) |
Log message:
fix for png-1.5. The new API (in particular the macro for png_jmpbuf)
does really suck here.
|
2011-01-16 13:51:24 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Start fixing build, final bits missing.
|
2011-01-13 14:40:12 by Thomas Klausner | Files touched by this commit (1644) |
Log message:
png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.
|
2010-12-23 12:45:04 by David Sainty | Files touched by this commit (254) |
Log message:
Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk
This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).
The mechanical edits were applied via the following script:
#!/bin/sh
for d in */*; do
[ -d "$d" ] || continue
for i in "$d/"Makefile* "$d/"*.mk; do
case "$i" in *.orig|*"*"*) continue;; esac
out="$d/x"
sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
-e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
< "$i" > "$out"
if cmp -s "$i" "$out"; then
rm -f "$out"
else
echo "Edited $i"
mv -f "$i" "$i.orig" && mv "$out" \
"$i"
fi
done
done
|
2010-06-14 00:45:57 by Thomas Klausner | Files touched by this commit (1673) |
Log message:
Bump PKGREVISION for libpng shlib name change.
Also add some patches to remove use of deprecated symbols and fix other
problems when looking for or compiling against libpng-1.4.x.
|
2010-01-18 10:59:46 by Thomas Klausner | Files touched by this commit (938) |
Log message:
Second try at jpeg-8 recursive PKGREVISION bump.
|
2009-11-15 22:09:50 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 1.2.10:
1.2.10:
Sam Lantinga - Sat Nov 14 11:22:14 PST 2009
* Fixed bug loading multiple images
1.2.9:
Sam Lantinga - Tue Nov 10 00:29:20 PST 2009
* Fixed alpha premultiplication on Mac OS X and iPhone OS
Sam Lantinga - Sun Nov 8 07:52:11 PST 2009
* Fixed checking for IMG_Init() return value in image loaders
|