1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
$NetBSD: patch-ac,v 1.1 2006/03/13 21:23:54 joerg Exp $
--- src/app-utils/gnc-exp-parser.c.orig 2006-03-07 05:08:14.000000000 +0000
+++ src/app-utils/gnc-exp-parser.c
@@ -548,9 +548,15 @@ gnc_exp_parser_parse_separate_vars (cons
lc = gnc_localeconv ();
+#if defined(__DragonFly__)
+ pe = init_parser (vars, (char *)lc->mon_decimal_point, (char *)lc->mon_thousands_sep,
+ trans_numeric, numeric_ops, negate_numeric, g_free,
+ func_op);
+#else
pe = init_parser (vars, lc->mon_decimal_point, lc->mon_thousands_sep,
trans_numeric, numeric_ops, negate_numeric, g_free,
func_op);
+#endif
error_loc = parse_string (&result, expression, pe);
|