![]() |
#11 |
Apprentice
Join Date: Dec 2019
Posts: 61
![]() |
I was able to compile version 2.9.3 in linux with this commands
Code:
$ curl -OL "https://github.com/angband/angband/archive/refs/tags/v2.9.3.tar.gz $ tar -xzvf v2.9.3.tar.gz $ cd angband-2.9.3/ $ ./configure --with-no-install $ make Code:
./src/angband -uUser -mgcu -- -n1 Code:
Savefile does not exist. -more- |
![]() |
![]() |
![]() |
#12 |
Veteran
Join Date: Apr 2009
Location: Pisa / DL0
Posts: 1,023
![]() |
Have you tried omitting -uUser ?
__________________
Dive fast, die young, leave a high-CHA corpse. -- You read a scroll labeled 'lol gtfo' of Teleport Level. |
![]() |
![]() |
![]() |
#13 | |
Adept
|
Quote:
I was surprised that OmnibandTk isn't in this sites variants tab, but I did find a copy using Google, at https://www.dropbox.com/s/delqrrxgun...andtk.zip?dl=0 I can't personally vouch for this copy, it's 18MB while my copy is 20MB. |
|
![]() |
![]() |
![]() |
#14 | |
Adept
Join Date: Apr 2021
Posts: 122
![]() |
Quote:
Try this in the source directory: grep DIR *.[ch] Makefile* (I think it would look for the lib directory in the current directory if nothing else was defined, but I could be wrong.) |
|
![]() |
![]() |
![]() |
#15 | |
Apprentice
Join Date: Dec 2019
Posts: 61
![]() |
Quote:
Code:
lea@devuan:~/games/roguelikes/angband/angband-2.9.3/src$ grep DIR *.[ch] Makefile* | grep ANGBAND_DIR_SAVE externs.h:extern cptr ANGBAND_DIR_SAVE; files.c: path_build(savefile, 1024, ANGBAND_DIR_SAVE, temp); init2.c: string_free(ANGBAND_DIR_SAVE); init2.c: ANGBAND_DIR_SAVE = string_make(""); init2.c: ANGBAND_DIR_SAVE = string_make(path); init2.c: string_free(ANGBAND_DIR_SAVE); main.c: string_free(ANGBAND_DIR_SAVE); main.c: ANGBAND_DIR_SAVE = string_make(s+1); main-emx.c: char **ANGBAND_DIR_SAVE, main-emx.c: (char**)&ANGBAND_DIR_SAVE, main-gtk.c: path_build(buf, 1024, ANGBAND_DIR_SAVE, "*"); main-win.c: ofn.lpstrInitialDir = ANGBAND_DIR_SAVE; main-win.c: validate_dir(ANGBAND_DIR_SAVE); variable.c:cptr ANGBAND_DIR_SAVE; lea@devuan:~/games/roguelikes/angband/angband-2.9.3/src$ grep DIR *.[ch] Makefile* | grep savefile files.c: path_build(savefile, 1024, ANGBAND_DIR_SAVE, temp); Code:
lea@devuan:~/games/roguelikes/angband/angband-2.9.3$ ls -lahF lib/ total 80K drwxr-xr-x 13 lea lea 4.0K Oct 27 23:49 ./ drwxr-xr-x 4 lea lea 4.0K Oct 27 23:49 ../ drwxr-xr-x 2 lea lea 4.0K Oct 27 23:52 apex/ drwxr-xr-x 2 lea lea 4.0K Oct 27 23:49 bone/ drwxr-xr-x 2 lea lea 4.0K Oct 27 23:52 data/ drwxr-xr-x 2 lea lea 4.0K Oct 27 23:49 edit/ drwxr-xr-x 2 lea lea 4.0K Oct 27 23:49 file/ drwxr-xr-x 2 lea lea 4.0K Oct 27 23:49 help/ drwxr-xr-x 2 lea lea 4.0K Oct 27 23:49 info/ -rw-r--r-- 1 lea lea 8.2K Oct 27 23:49 Makefile -rw-r--r-- 1 lea lea 140 Sep 29 2012 Makefile.am -rw-r--r-- 1 lea lea 8.1K Sep 29 2012 Makefile.in drwxr-xr-x 2 lea lea 4.0K Oct 27 23:49 pref/ drwxr-xr-x 2 lea lea 4.0K Oct 27 23:49 save/ drwxr-xr-x 2 lea lea 4.0K Oct 27 23:49 user/ drwxr-xr-x 2 lea lea 4.0K Oct 27 23:49 xtra/ lea@devuan:~/games/roguelikes/angband/angband-2.9.3$ ls -lahF lib/save/ total 28K drwxr-xr-x 2 lea lea 4.0K Oct 27 23:49 ./ drwxr-xr-x 13 lea lea 4.0K Oct 27 23:49 ../ -rw-r--r-- 1 lea lea 0 Sep 29 2012 delete.me -rw-r--r-- 1 lea lea 5.3K Oct 27 23:49 Makefile -rw-r--r-- 1 lea lea 356 Sep 29 2012 Makefile.am -rw-r--r-- 1 lea lea 5.3K Sep 29 2012 Makefile.in |
|
![]() |
![]() |
![]() |
#16 |
Apprentice
Join Date: Dec 2019
Posts: 61
![]() |
I noticed that the current angband compile i have has the save file in lib/save as you mentioned before:
Code:
$ ls -lahF ~/src/angband/lib/save/ total 44K drwxr-xr-x 2 lea lea 4.0K Oct 29 22:53 ./ drwxr-xr-x 14 lea lea 4.0K Oct 27 22:52 ../ -rw------- 1 lea lea 34K Oct 29 22:53 User ![]() Code:
$ ls -lahF ~/games/roguelikes/angband/angband-2.9.3/lib/save/ total 64K drwxr-xr-x 2 lea lea 4.0K Oct 30 07:49 ./ drwxr-xr-x 13 lea lea 4.0K Oct 27 23:49 ../ -rw-r--r-- 1 lea lea 0 Sep 29 2012 delete.me -rw-r--r-- 1 lea lea 5.3K Oct 27 23:49 Makefile -rw-r--r-- 1 lea lea 356 Sep 29 2012 Makefile.am -rw-r--r-- 1 lea lea 5.3K Sep 29 2012 Makefile.in -rw-r--r-- 1 lea lea 34K Oct 30 07:50 User |
![]() |
![]() |
![]() |
#17 |
Vanilla maintainer
Join Date: Apr 2007
Location: Canberra, Australia
Age: 57
Posts: 9,481
Donated: $60
![]() ![]() |
Have you tried
Code:
~/.angband/Angband/save
__________________
One for the Dark Lord on his dark throne In the Land of Mordor where the Shadows lie. |
![]() |
![]() |
![]() |
#18 | |
Apprentice
Join Date: Dec 2019
Posts: 61
![]() |
Quote:
what i don't understand, is that if i use the following commands: Code:
./configure --prefix $HOME/.angband_2.9.3 make clean make make install i also tried the "./configure" with no parameters and i get the same result, the only difference is with "./configure --with-no-install" this gives me the angband executable under the "src" directory, and not in the current directory (the decompressed sources directory) |
|
![]() |
![]() |
![]() |
#19 |
Adept
Join Date: May 2020
Location: Argentina
Posts: 195
![]() |
Code:
./src/angband -uUser -mgcu -- -n1 |
![]() |
![]() |
![]() |
#20 |
Apprentice
Join Date: Dec 2019
Posts: 61
![]() |
but this is the current version in this directory, that works perfectly, no "Savefile does not exist. -more-" error, the problem is the 2.9.3 version, that no matter what i try, i get that error after compile.
Last edited by lea2501; October 30, 2021 at 22:57. |
![]() |
![]() |
![]() |
Tags |
compiling, old version |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Vanilla Angband back versions on live | Gwarl | Vanilla | 7 | August 15, 2019 13:33 |
Compile z+angband on linux | garu | Variants | 2 | November 5, 2009 15:20 |
How to compile Angband page | PaulBlay | Oook! | 2 | February 20, 2009 12:51 |
Angband VERSIONS | Chulta | Vanilla | 6 | January 15, 2009 07:35 |
Getting Visual C++ 2008 Express Edition to compile Angband 3.0.9 | Orillian | Vanilla | 5 | February 10, 2008 09:23 |