Sun 17 Aug 2014 11:03:33 PM UTC, original submission:
I try to build TeXmacs 1.99.2 (with https://savannah.gnu.org/support/download.php?file_id=31753 patch) on Debian Linux "jessie" system:
$ GUILE_EFFECTIVE_VERSION=1.6 ./configure --prefix=/usr/local/stow/TeXmacs --enable-pdf-renderer --enable-optimize --disable-guile2
$ make
It fails with error messages:
g++ -ISystem -ISystem/Boot -ISystem/Classes -ISystem/Files -ISystem/Link -ISystem/Misc -ISystem/Language -IKernel/Abstractions -IKernel/Containers -IKernel/Types -IData/Convert -IData/Drd -IData/History -IData/Observers -IData/Document -IData/String -IData/Tmfs -IData/Tree -IScheme -IGraphics/Bitmap_fonts -IGraphics/Fonts -IGraphics/Gui -IGraphics/Mathematics -IGraphics/Renderer -IGraphics/Handwriting -IGraphics/Types -IGraphics/Pictures -IGraphics/Spacial -IGraphics/Colors -IPlugins -ITypeset -ITypeset/Bridge -ITypeset/Concat -ITypeset/Page -IEdit -IPlugins -ITexmacs -DQT_WEBKIT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 -I. -I. -DQTTEXMACS -Wall -Wno-return-type -O3 -fexpensive-optimizations -fno-rtti -c ./Scheme/Scheme/glue.cpp -o Objects/glue.o
In file included from ./Scheme/Scheme/object.hpp:18:0,
from ./Scheme/Scheme/glue.hpp:21,
from ./Scheme/Scheme/glue.cpp:12:
./Scheme/Scheme/../Guile/guile_tm.hpp:117:0: warning: "scm_is_null" redefined
#define scm_is_null(x) SCM_NFALSEP(scm_null_p(x))
^
In file included from /usr/include/libguile.h:71:0,
from /usr/include/guile/gh.h:24,
from ./Scheme/Scheme/../Guile/guile_tm.hpp:42,
from ./Scheme/Scheme/object.hpp:18,
from ./Scheme/Scheme/glue.hpp:21,
from ./Scheme/Scheme/glue.cpp:12:
/usr/include/libguile/pairs.h:36:0: note: this is the location of the previous definition
#define scm_is_null(x) (scm_is_eq ((x), SCM_EOL))
^
In file included from ./Scheme/Scheme/object.hpp:18:0,
from ./Scheme/Scheme/glue.hpp:21,
from ./Scheme/Scheme/glue.cpp:12:
./Scheme/Scheme/../Guile/guile_tm.hpp:123:0: warning: "scm_is_symbol" redefined
#define scm_is_symbol(x) SCM_NFALSEP(scm_symbol_p(x))
^
In file included from /usr/include/libguile.h:98:0,
from /usr/include/guile/gh.h:24,
from ./Scheme/Scheme/../Guile/guile_tm.hpp:42,
from ./Scheme/Scheme/object.hpp:18,
from ./Scheme/Scheme/glue.hpp:21,
from ./Scheme/Scheme/glue.cpp:12:
/usr/include/libguile/symbols.h:28:0: note: this is the location of the previous definition
#define scm_is_symbol(x) (!SCM_IMP (x) \
^
In file included from ./Scheme/Scheme/object.hpp:18:0,
from ./Scheme/Scheme/glue.hpp:21,
from ./Scheme/Scheme/glue.cpp:12:
./Scheme/Scheme/../Guile/guile_tm.hpp:197:26: error: ambiguating new declaration of ‘long int scm_to_int32(SCM)’
long scm_to_long (SCM obj);
^
In file included from /usr/include/libguile.h:67:0,
from /usr/include/guile/gh.h:24,
from ./Scheme/Scheme/../Guile/guile_tm.hpp:42,
from ./Scheme/Scheme/object.hpp:18,
from ./Scheme/Scheme/glue.hpp:21,
from ./Scheme/Scheme/glue.cpp:12:
./Scheme/Scheme/../Guile/guile_tm.hpp:196:5: note: old declaration ‘int scm_to_int32(SCM)’
int scm_to_int (SCM obj);
^
makefile:304: recipe for target 'Objects/glue.o' failed
make[1]: *** [Objects/glue.o] Error 1
make[1]: Leaving directory '/home/porton/build/TeXmacs-1.99.2-src/src'
Makefile:54: recipe for target 'TEXMACS' failed
make: *** [TEXMACS] Error 2
|