From: Mauricio T. <ra...@ku...> - 2005-03-23 15:57:54
|
I am trying to compile BasilikII-1.0 in this Solaris 9 box. So, I download BasiliskII_src_22032005.tar.bz2 and get inside the directory it creates after being uncompressed and untarred and do the basic ./configure, which gives me the following summary: Basilisk II configuration summary: SDL support ............................ : none XFree86 DGA support .................... : no XFree86 VidMode support ................ : yes fbdev DGA support ...................... : yes Enable video on SEGV signals ........... : no ESD sound support ...................... : yes GTK user interface ..................... : no mon debugger support ................... : no Running m68k code natively ............. : no Use JIT compiler ....................... : no JIT debug mode ......................... : no Floating-Point emulation core .......... : IEEE fpu core Assembly optimizations ................. : none Addressing mode ........................ : memory banks Bad memory access recovery type ........ : Configuration done. Now type "make" (or "gmake"). neko@poisonivy-22> When I try to compile it, neko@poisonivy-22>make g++ -I../include -I. -I../uae_cpu -DHAVE_CONFIG_H -DOS_solaris -DBSD_COMP -D_POSIX_PTHREAD_SEMANTICS -DFPU_IEEE -D_REENTRANT -DDATADIR=\"/usr/local/share/BasiliskII\" -g -O2 -fno-merge-constants -fno-gcse-sm -c ../main.cpp -o obj/main.o g++ -I../include -I. -I../uae_cpu -DHAVE_CONFIG_H -DOS_solaris -DBSD_COMP -D_POSIX_PTHREAD_SEMANTICS -DFPU_IEEE -D_REENTRANT -DDATADIR=\"/usr/local/share/Basil [...] In file included from ./sysdeps.h:28, from ../video.cpp:32: ./config.h:615:1: warning: "_FILE_OFFSET_BITS" redefined In file included from /usr/include/iso/stdio_iso.h:35, from /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.0/include/stdio.h:36, from ../video.cpp:30: /usr/include/sys/feature_tests.h:96:1: warning: this is the location of the previous definition g++ -I../include -I. -I../uae_cpu -DHAVE_CONFIG_H -DOS_solaris -DBSD_COMP -D_POSIX_PTHREAD_SEMANTICS -DFPU_IEEE -D_REENTRANT -DDATADIR=\"/usr/local/share/BasiliskII\" -g -O2 -fno-merge-constants -fno-gcse-sm -c video_blit.cpp -o obj/video_blit.o g++ -I../include -I. -I../uae_cpu -DHAVE_CONFIG_H -DOS_solaris -DBSD_COMP -D_POSIX_PTHREAD_SEMANTICS -DFPU_IEEE -D_REENTRANT -DDATADIR=\"/usr/local/share/BasiliskII\" -g -O2 -fno-merge-constants -fno-gcse-sm -c vm_alloc.cpp -o obj/vm_alloc.o g++ -I../include -I. -I../uae_cpu -DHAVE_CONFIG_H -DOS_solaris -DBSD_COMP -D_POSIX_PTHREAD_SEMANTICS -DFPU_IEEE -D_REENTRANT -DDATADIR=\"/usr/local/share/BasiliskII\" -g -O2 -fno-merge-constants -fno-gcse-sm -c sigsegv.cpp -o obj/sigsegv.osigsegv.cpp:1520: error: `SIGSEGV_FAULT_HANDLER_ARGLIST' was not declared in this scope sigsegv.cpp:1521: error: expected `,' or `;' before '{' token make: *** [obj/sigsegv.o] Error 1 neko@poisonivy-23> I seem to get a few interesting errors. Suggestions? |