diff options
author | wulf <wulf@pkgsrc.org> | 2004-05-06 13:41:45 +0000 |
---|---|---|
committer | wulf <wulf@pkgsrc.org> | 2004-05-06 13:41:45 +0000 |
commit | f3888ab567f7ebc681134c6685820efcf4f73ab9 (patch) | |
tree | 56525f531370630c072cc6958c8a0757eebef9c1 /ham/xlog/patches | |
parent | c5a13fa6833f765a6a50aca115ad960a948fe89e (diff) | |
download | pkgsrc-f3888ab567f7ebc681134c6685820efcf4f73ab9.tar.gz |
Updated xlog to 0.9.3: Several bug fixes
Changes for xlog version 0.9.3
* Fixed a crash at startup, when xlog is run for the very first time. This
only occured on NetBSD. This fix submitted by Berndt Josef Wulf, VK5ABN.
* The log-editor would behave badly for some people, caused by a wrong
implementation of qsort. Reported by VK5ABN and Tony May, KG6SXY.
* This version should compile both with version 2.2 and 2.4 of the GTK+
version 2 libraries.
* Update spanish translations by Jaime, EA4TV.
* If using the log-editor and a column is added or deleted, the log is
marked as changed.
* Dupe checking has been fixed in case we have multiple logs open.
* If you compile xlog against version 2.4.0 or higher of GTK+, you will
benefit from much faster log loading. As a consequence, columns have been
set to a fixed width.
Diffstat (limited to 'ham/xlog/patches')
-rw-r--r-- | ham/xlog/patches/patch-ab | 13 | ||||
-rw-r--r-- | ham/xlog/patches/patch-ad | 14 | ||||
-rw-r--r-- | ham/xlog/patches/patch-ae | 14 |
3 files changed, 0 insertions, 41 deletions
diff --git a/ham/xlog/patches/patch-ab b/ham/xlog/patches/patch-ab deleted file mode 100644 index bc834d5a223..00000000000 --- a/ham/xlog/patches/patch-ab +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ab,v 1.2 2004/02/18 06:04:44 wulf Exp $ - ---- src/hamlib-utils.c.orig 2004-02-01 16:21:58.000000000 +1030 -+++ src/hamlib-utils.c 2004-02-01 16:22:07.000000000 +1030 -@@ -604,7 +604,7 @@ - if (preferences.round == 0) - g_string_printf (digits, "%Ld", state.rigfrequency); - else -- g_string_printf (digits, "%Ld", (long long) rintl (state.rigfrequency / -+ g_string_printf (digits, "%Ld", (long long) rint (state.rigfrequency / - pow (10, preferences.round))); - g_string_insert_c (digits, (digits->len) - 6 + preferences.round, '.'); - g_strstrip (digits->str); diff --git a/ham/xlog/patches/patch-ad b/ham/xlog/patches/patch-ad deleted file mode 100644 index 7e6b8b5c745..00000000000 --- a/ham/xlog/patches/patch-ad +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-ad,v 1.1 2004/02/18 22:18:28 wulf Exp $ - ---- src/callbacks_otherdialogs.c.orig 2004-01-12 00:54:45.000000000 +1030 -+++ src/callbacks_otherdialogs.c 2004-02-19 09:40:49.000000000 +1030 -@@ -1748,7 +1748,9 @@ - fclose (finfo.fd); - dup2 (saved_fd, STDERR_FILENO); - close (saved_fd); -+#ifndef __NetBSD__ - stderr = fdopen (STDERR_FILENO, "w"); -+#endif - hamlibresult = start_hamlib (preferences.radio, preferences.device, - RIG_DEBUG_NONE, preferences.polltime); - #endif /* WANT_HAMLIB */ diff --git a/ham/xlog/patches/patch-ae b/ham/xlog/patches/patch-ae deleted file mode 100644 index 0c1c3744889..00000000000 --- a/ham/xlog/patches/patch-ae +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-ae,v 1.1 2004/04/11 01:28:00 wulf Exp $ - ---- src/Makefile.in.orig 2004-01-12 00:54:46.000000000 +1030 -+++ src/Makefile.in 2004-04-11 10:42:56.000000000 +0930 -@@ -145,8 +145,7 @@ - @PACKAGE_CFLAGS@ -I.. \ - -DG_DISABLE_DEPRECATED \ - -DGDK_DISABLE_DEPRECATED \ -- -DGDK_PIXBUF_DISABLE_DEPRECATED \ -- -DGTK_DISABLE_DEPRECATED -+ -DGDK_PIXBUF_DISABLE_DEPRECATED - - - CLEANFILES = *~ |