2012-04-11 04:53:13 by Mayuresh | Files touched by this commit (3) |
Log message:
Makefile: buildlink to libgcrypt added
patch to log.cpp added to fix a compilation error. Informed upstream.
distinfo added for the patch
There are run-time issues now: 1. the ringer works, though no voice heard on \
either side during a voip call. 2. On exit twinkle hangs with high CPU usage and \
needs to be killed.
|
2012-02-25 20:18:05 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Fix detection of ccrtp (pkg-config file name changed for 2.x).
Build now dies in
log.cpp: In member function 'void t_log::write_header(const std::string&, \
t_log_class, t_log_severity)':
log.cpp:164:24: error: call of overloaded 'localtime_r(time_t*, tm*)' is ambiguous
|
2011-11-10 14:25:17 by othyro | Files touched by this commit (1) |
Log message:
Regenerated due to commenting patches.
|
2011-11-10 14:23:23 by othyro | Files touched by this commit (1) |
Log message:
Commented.
|
2011-11-10 14:19:39 by othyro | Files touched by this commit (1) |
Log message:
Commented.
|
2011-11-10 14:17:59 by othyro | Files touched by this commit (1) |
Log message:
Commented.
|
2011-11-10 14:17:00 by othyro | Files touched by this commit (1) |
Log message:
Commented.
|
2011-11-10 14:16:18 by othyro | Files touched by this commit (1) |
Log message:
Commented.
|
2011-11-10 14:11:44 by othyro | Files touched by this commit (1) |
Log message:
+ LICENSE
|
2010-12-26 06:01:21 by David Sainty | Files touched by this commit (78) |
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
|