
This is the closest I can get.
With hint of familiar loneliness and nerdiness, but curiously unfathomable. This is, not your cup of Chai...
(gnucash:12739): GLib-CRITICAL **: g_date_set_month: assertion `g_date_valid_month (m)' failedI had seen the error messages above so often that after 10 minutes, I decided to fix them.
(gnucash:12739): GLib-CRITICAL **: g_date_strftime: assertion `g_date_valid (d)' failed
The comment above has it: the variable mon will be from 0 to 11 and the number 0 is what choked glib. This is done.
#define MONTH_NAME_BUFSIZE 5
/* Takes the number of months since January, in the range 0 to
* 11. Returns the abbreviated month name according to the current
* locale. (i18n'd version of the above static character array.) */
static const gchar *month_name(int mon)
{
static gchar buf[MONTH_NAME_BUFSIZE];
GDate *date;
memset(buf, 0, MONTH_NAME_BUFSIZE);
date = g_date_new();
g_date_set_month(date, mon);
g_date_strftime(buf, MONTH_NAME_BUFSIZE-1, "%b", date);
g_date_free(date);
return buf;
}
GnuCash developers have my permission to incorporate this fix into the project if they wish.
#define MONTH_NAME_BUFSIZE 5
/* Takes the number of months since January, in the range 0 to
* 11. Returns the abbreviated month name according to the current
* locale. (i18n'd version of the above static character array.) */
static const gchar *month_name(int mon)
{
static gchar buf[MONTH_NAME_BUFSIZE];
GDate *date;
memset(buf, 0, MONTH_NAME_BUFSIZE);
/* date = g_date_new();*/
date = g_date_new_dmy(4, G_DATE_JULY, 2006); /* initialize to sane value */
/* printf("%s: setmonth is %d \n", __func__, mon); */ /* Debug statement */
g_date_set_month(date, mon+1);
g_date_strftime(buf, MONTH_NAME_BUFSIZE-1, "%b", date);
g_date_free(date);
return buf;
}
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:[path to gnome pkgconfig directories]My build was done without any errors after about 20 minutes. During execution there were some warnings from Glib on illegal parameters for the date functions.
export PATH=$PATH:[path to gconftool-2 directory]
./configure --prefix=[path you want]
make;make install
;
; By HKC Dec 02, 2006
;
(define (futureValue p r n i)
(let ((rate (/ r 100)))
(* p (expt (+ 1.0 (/ rate n)) i))))
;;
;; This function calculates the interest yield for the i-th month.
;;
;; Example: With principal of 10000, interest rate 10%, and interest ;; is calculated and reinvested
;; monthly at the same rate, we want to know how much money we ;;can get during the 8-th month.
;;
;; Invoke (gnc:interestYield 10000 10 12 8) and you should get 88.31767424426289
;;
;;
(define (gnc:interestYield p r n i)
(let ((this-val (futureValue p r n i))
(prev-val (futureValue p r n (- i 1))))
(- this-val prev-val)))
;;
;; This function calculates total interest accrued, assuming all ;;interests are reinvested at the same rate.
;;
;;
(define (gnc:interestAccrued p r n i)
(define (sum-it sum i)
(if (= i 0) sum
(sum-it (+ sum (interestYield p r n i)) (- i 1))))
(sum-it 0 i))