2011-09-13 00:31:58 by Thomas Klausner | Files touched by this commit (3) |
Log message:
Update to 23.3a: adds missing source files.
|
2011-06-09 15:47:31 by Matthias Drochner | Files touched by this commit (5) | |
Log message:
update to 23.3
Emacs 23.3 is primarily a bugfix release. Also included are a number of
enhancements to VC and Rmail, and a new indentation library, smie.el.
For details, see the file etc/NEWS.
|
2011-04-22 16:40:46 by OBATA Akio | Files touched by this commit (58) |
Log message:
recursive bump from gettext-lib shlib bump.
|
2011-03-23 16:15:20 by Min Sik Kim | Files touched by this commit (1) |
Log message:
Fix EMACSLOADPATH for emacs24.
|
2011-03-10 11:24:53 by OBATA Akio | Files touched by this commit (3) |
Log message:
Bump PKGREVISION form default GIF library change from libungif to giflib.
|
2011-03-09 17:28:21 by Matthias Drochner | Files touched by this commit (4) |
Log message:
libungif/buildlink3.mk -> mk/giflib.buildlink3.mk
|
2011-02-08 14:20:14 by Hiramatsu Yoshifumi | Files touched by this commit (7) |
Log message:
Instead of extracting version string from PKGNAME, use
${_EMACS_VERSION_MAJOR} and ${_EMACS_VERSION_MINOR} to determine installed
version of emacs.
Also, set minimum version of _EMACS_REQD to the same as
${_EMACS_VERSION_MAJOR}.${_EMACS_VERSION_MINOR}. Otherwise, buildlink
does not work for emacs lisp libraries.
Should fix PR/42763.
|
2011-01-14 11:32:29 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Fix build with png-1.5.
|
2011-01-13 14:53:34 by Thomas Klausner | Files touched by this commit (50) |
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
|