|
Hi,
I just built a new windows version today. It doesn't contain new features, I just wanted to test whether the recent code changed had any adverse effects on the window code.
You need a cygwin environment to build SheepShaver or Basilisk (at least, that is what I use). Besides the obvious compiler, you need some extra packages installed as well (cvs etc). Alas there is no overview of all required packages.
You install SDL (I use 1.2.14) in Cygwin and use the same commands as in Unix/OSX. Below are my build steps:
#Install SDL: download the source and do:
cd release-1.2.14
./autogen.sh
./configure --disable-shared --prefix=`pwd`
make
make install
#You need to cd into the SDL folder every time you start cygwin and export the path to sdl-config to build #SheepShaver, so SDL libs and sdl-config file can be found
PATH=`pwd`/bin:$PATH
export PATH
#Download the Basilisk and SheepShaver source
cvs -d :pserver:anoncvs@cvs.cebix.net:/home/cvs/cebix login
#(password is "anoncvs")
cvs -d :pserver:anoncvs@cvs.cebix.net:/home/cvs/cebix checkout BasiliskII
cvs -d :pserver:anoncvs@cvs.cebix.net:/home/cvs/cebix checkout SheepShaver
cd SheepShaver
make links
cd src/Windows
NO_CONFIGURE=1 ../Unix/autogen.sh
./configure #(there are no extra parameters when building in windows)
#You might run into a problem with the GTK version check, at or around line 3977? in configure. Just comment out #the 6 lines in the file related to the check, and things will work out.
make
strip SheepShaver.exe
|