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
Changes in 2.26.0:
* Fix distcheck
* Fix valgrind warning
* Translation updates (Thanks to all tranlators!)
Changes in 2.25.92:
* #566801 Docking+undocking all makes the buttons disappear and
crashes if you use "Reset dock layout" (Sebastien Granjoux)
* #573522 More patches for GDL (Joel Holdsworth)
* Small documentation update
Changes in 2.25.91:
* Added some gtk-doc documentation (Joel Holdsworth)
* Cleaned-up gtk+ includes (Pedro Fragoso)
Changes in 2.24.0
* Fixed dataroot problem
* Removed old code (and as such gnome-vfs dependency)
* Translation updates: he, sr, ar, et, hr, mr
Changes in 2.23.90
* Version increased to match gnome releases.
* Use smaller buttons to waste less space
* Port to the GtkTooltip API (fixes#457562)
* Fixed bug #529457 - Superfluous condition
* Fixed bug #539288 - Use gtype macros instead of the deprecated gtk ones.
* Translation updates: da, tr, el, it, zh_TW, zh_HK, ru, ar, vi,
bg, th, ps, sq, pt_BR, mr
This package contains components and libraries that are intended to be
shared between GNOME development tools, including gnome-debug,
gnome-build, and anjuta2.
The current pieces of GDL include:
- A symbol browser bonobo component (symbol-browser-control).
- A docking widget (gdl).
- A utility library that also contains the stubs and skels for
the symbol browser and text editor components (gdl, idl).