[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Texmacs-dev] Compilation failed
From: |
Joris van der Hoeven |
Subject: |
Re: [Texmacs-dev] Compilation failed |
Date: |
Sun, 3 Jul 2005 20:28:28 +0200 |
User-agent: |
Mutt/1.5.9i |
On Fri, Jul 01, 2005 at 05:02:26PM +0200, Stephan Mucha wrote:
> During compilation of CVS version on Debian I got the following error:
>
> In file included from Guile/Glue/glue_all.cpp:1:
> Guile/Glue/glue.cpp: In function `string scm_to_string(scm_unused_struct*)':
> Guile/Glue/glue.cpp:172: error: invalid conversion from `int*' to `size_t*'
> Guile/Glue/glue.cpp: In function `string scm_to_symbol(scm_unused_struct*)':
> Guile/Glue/glue.cpp:200: error: invalid conversion from `int*' to `size_t*'
> make[1]: *** [Objects/glue_all.o] Fehler 1
> make[1]: Leaving directory `/home/stephanm/tm/src/src'
> make: *** [TEXMACS] Fehler 2
What if you replace
string r (_r, len_r);
by
string r (_r, (int) len_r);
Does that solve the problem?