PART I.
Compilation
Edit Makefile.std
Confige Makefile.std to say:
NORMAL_CFLAGS = -Wall -pipe -O2 -D"USE_GCU" -D"USE_NCURSES"
LIBS = -lncurses
Make produces a strange error again:
util.o(.text+0x213): In function `path_temp':
util.c: warning: the use of `tmpnam' is dangerous, better use `mkstemp'
Also a strange error:
xtra1.c: In function `calc_bonuses':
xtra1.c:3694: warning: comparison is always false due to limited range of data type
Works, but needs knowledge of what to change.
Like in Portralis, i needed to fiddle around to find the right seetings - at first i got bad results because no output modules (use via "-m") could be found.
But then, i got it
First impression: Questions could just be answered with <Return>, which is great IMHO
Compilation
Code:
unzip unangband-062-wip5b-src.zip cd unangband-062-src cd src
Confige Makefile.std to say:
NORMAL_CFLAGS = -Wall -pipe -O2 -D"USE_GCU" -D"USE_NCURSES"
LIBS = -lncurses
Code:
make -f Makefile.std make -f Makefile.std install cd ..
util.o(.text+0x213): In function `path_temp':
util.c: warning: the use of `tmpnam' is dangerous, better use `mkstemp'
Also a strange error:
xtra1.c: In function `calc_bonuses':
xtra1.c:3694: warning: comparison is always false due to limited range of data type
Code:
./unangband
Like in Portralis, i needed to fiddle around to find the right seetings - at first i got bad results because no output modules (use via "-m") could be found.
But then, i got it
First impression: Questions could just be answered with <Return>, which is great IMHO
Comment