summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Haneman <billh@src.gnome.org>2004-03-07 13:40:18 +0000
committerBill Haneman <billh@src.gnome.org>2004-03-07 13:40:18 +0000
commit58c8b6c7156f2e81f39c8fd69b4bb8099e4c0e90 (patch)
treeebf1bb51471161490f3e47e80fe49f1afc86c2fa
parente948a06c993620f23eb3c0f6ea719a7fc3259e65 (diff)
Fix for nonstandard X prefix builds. Revved to 0.10.8.
-rw-r--r--ChangeLog10
-rw-r--r--NEWS33
-rw-r--r--configure.in4
3 files changed, 44 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index da23a0f..3e4cad2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2004-03-07 Bill Haneman <billh@gnome.org>
+
+ * configure.in: Revved to 0.10.8.
+ Fix for builds with non-standard Xlib prefixes
+ [Fernando Herrera, bug #130787].
+
+ * NEWS: updated.
+
2004-03-04 Guntupalli Karunakar <karunakar@freedomink.org>
* configure.in: Added "pa" (Punjabi) to ALL_LINGUAS.
@@ -52,7 +60,7 @@
* magnifier/zoom-region.c: Properly reset max totals.
2003-12-20 Arafat Medini <lumina@silverpen.de>
-
+
* configure.in: Added Arabic locale "ar" to ALL_LINGUAS
2003-12-17 Brian Cameron <Brian.Cameron@sun.com>
diff --git a/NEWS b/NEWS
index 67d098b..ccdbc79 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,38 @@
(top)
in HEAD:
+What's new in gnome-mag-0.10.8:
+
+* fix for builds with non-standard X directories. [bug 130787, from
+ Fernando Herrera]
+
+* smooth-scrolling is now the default.
+
+* magnifier toplevel window is now TYPE_POPUP as it
+ needs to be override-redirect and always on top.
+
+* fixes to benchmarking code reports (Brian Cameron).
+
+* cache GC's used in magnifier, to reduce X traffic (Brian Cameron).
+
+* makefile cleanup: (Tomasz K³oczko)
+
+* languages:
+ punjabi Guntupalli Karunakar
+ thai Paisa Seeluangsawat
+ croation Robert Sedak
+ arabic Arafat Medini
+
+What's new in gnome-mag-0.10.5:
+
+* Improvements to test/benchmark output;
+ fixed a number of errors in compiling statistics.
+
+* performance improvement due to cacheing GC's.
+
+* New languages:
+ ar (Arafat Medini),
+ et ( Tõivo Leedjärv <toivo@linux.ee>)
+
What's new in gnome-mag-0.10.4:
* new CLI options for performance benchmarking;
diff --git a/configure.in b/configure.in
index 31108be..42b73bf 100644
--- a/configure.in
+++ b/configure.in
@@ -12,7 +12,7 @@ GNOME_MAG_CURRENT=`expr $GNOME_MAG_MINOR_VERSION - $GNOME_MAG_INTERFACE_AGE`
dnl increment any time the source you release changes; set to
dnl 0 if you uncrement CURRENT
-GNOME_MAG_REVISION=7
+GNOME_MAG_REVISION=8
GNOME_MAG_MICRO_VERSION=$GNOME_MAG_REVISION
dnl increment if any interfaces have been added; set to 0
@@ -105,7 +105,7 @@ dnl path to Xtst
AC_CHECK_LIB(Xtst, XTestFakeKeyEvent, XTST_LIBS=-lXtst)
if test "x$XTST_LIBS" = x; then
save_LIBS="$LIBS"
- for xtstpath in /usr/X11R6/lib /usr/openwin/lib; do
+ for xtstpath in /usr/X11R6/lib /usr/openwin/lib $x_libraries; do
LIBS="-L$xtstpath -lXtst"
case "$host" in
*solaris*) XTST_RPATH_FLAGS="-R$xtstpath" ;;