Page 1 of 2

The 1st version of R'n'D

Posted: Mon Oct 31, 2016 2:56 pm
by MateFizyChem
How is it like?
Is it still possible to get it?
What are the differences?

Re: The 1st version of R'n'D

Posted: Mon Oct 31, 2016 3:55 pm
by Holger
> How is it like?

See for yourself. :-)

> Is it still possible to get it?

Yes, here it is: http://www.artsoft.org/RELEASES/unix/rocksndiamonds/

It is the file "rocks_n_diamonds-0.9.tgz" from 1995-10-22.

EDIT: If you do not use a Unix system, just have a look at the (newer) versions for other platforms, like MS-DOS, Windows or Mac OS X. (Just click on the "Parent Directory" links...)

> What are the differences?

They are too many to list here, but you can check the file "ChangeLog" in the last version, or browse the Git commit messages on the Git server (git.artsoft.org).

Re: The 1st version of R'n'D

Posted: Mon Oct 31, 2016 4:09 pm
by MateFizyChem
The death laugh inspired me to make this post.

Re: The 1st version of R'n'D

Posted: Mon Oct 31, 2016 4:15 pm
by MateFizyChem
Holger wrote:> How is it like?

See for yourself. :-)

> Is it still possible to get it?

Yes, here it is: http://www.artsoft.org/RELEASES/unix/rocksndiamonds/

It is the file "rocks_n_diamonds-0.9.tgz" from 1995-10-22.

EDIT: If you do not use a Unix system, just have a look at the (newer) versions for other platforms, like MS-DOS, Windows or Mac OS X. (Just click on the "Parent Directory" links...)

> What are the differences?

They are too many to list here, but you can check the file "ChangeLog" in the last version, or browse the Git commit messages on the Git server (git.artsoft.org).
Is the UNIX version also for Linux?

Re: The 1st version of R'n'D

Posted: Mon Oct 31, 2016 4:33 pm
by Holger
Yes.

Re: The 1st version of R'n'D

Posted: Mon Oct 31, 2016 6:04 pm
by MateFizyChem
How to install it in Linux Mint 18 KDE?

Re: The 1st version of R'n'D

Posted: Mon Oct 31, 2016 7:50 pm
by Holger
In theory, just extract the tar/gz file and type "make" to build it, then "./rocksndiamonds" to run it.

In practice, you will either have to use an old computer with a Linux system from the late 90's, or change some lines of the old R'n'D code that compiled fine with older GCCs in the last century, but fails to compile nowadays, because the C syntax that is allowed by GCC has changed over time. (For example, I still have some older computers from 1992 and 1998 with old versions of Linux and X11 on them, which I could use to run old versions of R'n'D -- not sure if they still boot, though...)

If anybody should know a site where one could get virtual machine images with (very) old Linux systems (with X11) ready to drop into a current VirtualBox or VMware installation just for the fun of it, please let me know! :)

Re: The 1st version of R'n'D

Posted: Mon Oct 31, 2016 8:21 pm
by MateFizyChem
Holger wrote:In theory, just extract the tar/gz file and type "make" to build it, then "./rocksndiamonds" to run it.

In practice, you will either have to use an old computer with a Linux system from the late 90's, or change some lines of the old R'n'D code that compiled fine with older GCCs in the last century, but fails to compile nowadays, because the C syntax that is allowed by GCC has changed over time. (For example, I still have some older computers from 1992 and 1998 with old versions of Linux and X11 on them, which I could use to run old versions of R'n'D -- not sure if they still boot, though...)

If anybody should know a site where one could get virtual machine images with (very) old Linux systems (with X11) ready to drop into a current VirtualBox or VMware installation just for the fun of it, please let me know! :)

I debugged the command and here are the stuff I did:
  • I installed the packages with the missing files,
    I corrected the scripts, so they will find the existing files.
This is the result:
gcc -O6 -DGAME_DIR=\".\" -DMANY_PER_NAME -DXPM_INCLUDE_FILE="<X11/xpm.h>" -c main.c
In file included from /usr/include/x86_64-linux-gnu/sys/select.h:43:0,
from /usr/include/x86_64-linux-gnu/sys/types.h:219,
from main.h:31,
from main.c:17:
/usr/include/time.h:120:8: error: redefinition of ‘struct timespec’
struct timespec
^
In file included from /usr/include/X11/Xos.h:119:0,
from main.h:25,
from main.c:17:
/usr/include/linux/time.h:9:8: note: originally defined here
struct timespec {
^
In file included from /usr/include/x86_64-linux-gnu/sys/select.h:45:0,
from /usr/include/x86_64-linux-gnu/sys/types.h:219,
from main.h:31,
from main.c:17:
/usr/include/x86_64-linux-gnu/bits/time.h:30:8: error: redefinition of ‘struct timeval’
struct timeval
^
In file included from /usr/include/X11/Xos.h:119:0,
from main.h:25,
from main.c:17:
/usr/include/linux/time.h:15:8: note: originally defined here
struct timeval {
^
In file included from main.h:25:0,
from main.c:17:
/usr/include/string.h:484:14: error: expected declaration specifiers or ‘...’ before ‘(’ token
extern char *index (const char *__s, int __c)
^
/usr/include/string.h:484:14: error: expected declaration specifiers or ‘...’ before ‘(’ token
extern char *index (const char *__s, int __c)
^
/usr/include/string.h:512:14: error: expected declaration specifiers or ‘...’ before ‘(’ token
extern char *rindex (const char *__s, int __c)
^
/usr/include/string.h:512:14: error: expected declaration specifiers or ‘...’ before ‘(’ token
extern char *rindex (const char *__s, int __c)
^
In file included from main.c:17:0:
main.h:659:25: error: array type has incomplete element type ‘struct SoundInfo’
extern struct SoundInfo Sound[NUM_SOUNDS];
^
Makefile:53: polecenia dla obiektu 'main.o' nie powiodły się(it means "the tasks for object 'main.o' did not succeed")
make: *** [main.o] Błąd (it means "Error") 1
.

Can you think of a solution?

Re: The 1st version of R'n'D

Posted: Mon Oct 31, 2016 8:34 pm
by Holger
Yes, I would be able to debug and fix such errors (and I know the cause for those errors from your quote, and should be able to fix them), but I would rather prefer to fix bugs and create features for modern R'n'D in my limited free time than working on twenty years old code to make it compile with modern compilers. :-)

But these compiler errors are usually all relatively easy to fix. If you're really keen on compiling and running R'n'D version 0.9, with a little bit of C knowledge (or willingness to learn some C programming), it shouldn't be too hard to do. :-)

Re: The 1st version of R'n'D

Posted: Mon Oct 31, 2016 9:16 pm
by MateFizyChem
Why did you remove the old music(for example czardasz(if I forgot the name than I shall be shamed because the word looks polish and I am polish))?

Re: The 1st version of R'n'D

Posted: Mon Oct 31, 2016 10:31 pm
by MateFizyChem
Holger wrote:Yes, I would be able to debug and fix such errors (and I know the cause for those errors from your quote, and should be able to fix them), but I would rather prefer to fix bugs and create features for modern R'n'D in my limited free time than working on twenty years old code to make it compile with modern compilers. :-)

But these compiler errors are usually all relatively easy to fix. If you're really keen on compiling and running R'n'D version 0.9, with a little bit of C knowledge (or willingness to learn some C programming), it shouldn't be too hard to do. :-)
Now I know, setting up 0,9 manually is way easier than setting up 4,0 manually.

Look at this mess(trying to use sdl):
[...](I am sure this is way longer, I only skipped it, because I dropped my mouse(Then say "Hello!" to the character limit!).)

/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\377’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\377’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:56: warning: null character(s) ignored
f � � # a � �
^
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\16’ in program
f � � # a � �
^
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\10’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\206’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\2’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\16’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\203’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\3’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\16’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\16’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\303’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\16’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\10’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\306’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\16’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\4’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:84: warning: null character(s) ignored
� � # a � � l
^
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:87: error: stray ‘@’ in program
� � # a � � l
^
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:88: warning: null character(s) ignored
� � # a � � l
^
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\300’ in program
f � � # a � �
^
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\3’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:93: warning: null character(s) ignored
� � # a � � l
^
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘`’ in program
f � � # a � �
^
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\353’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\377’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\377’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:100: warning: null character(s) ignored
# a � � l � �
^
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:35:1: error: stray ‘\16’ in program
f � � # a � �
^
[...](The part above is very fun.)
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:692: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:696: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\20’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:700: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:704: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\3’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:708: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\2’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:712: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\250’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\7’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:717: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\250’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\7’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:721: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\241’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:725: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:736: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:744: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\377’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\377’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\377’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\2’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:752: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:756: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:760: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\240’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:764: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\3’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:768: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\2’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:776: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\2’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:780: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:784: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\376’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\377’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\377’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\2’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:792: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\354’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:796: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\354’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:800: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:804: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:808: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:812: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:816: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:824: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:3: error: stray ‘\2’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:53:832: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:54:1: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:55:1: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:55:3: error: stray ‘@’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:55:4: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:55:3: error: stray ‘\3’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:55:8: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:55:3: error: stray ‘\4’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:55:16: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:55:3: error: stray ‘\10’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:55:20: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:55:24: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:55:3: error: stray ‘\2’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:55:32: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:56:1: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:57:1: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:57:3: error: stray ‘\10’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:57:3: error: stray ‘\1’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:57:5: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:57:3: error: stray ‘\3’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:57:8: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:1: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:5: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\10’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:9: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:13: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:17: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\6’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:21: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\204’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\16’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:26: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\204’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\16’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:30: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:32: error: stray ‘#’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:33: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:45: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:53: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:57: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\6’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:61: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\260’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\16’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:66: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\260’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\16’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:70: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\2’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:74: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\20’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:85: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:89: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:93: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:97: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\6’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:101: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\320’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\20’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:106: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\320’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\20’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:110: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\30’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:114: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\20’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:125: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:133: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:137: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\6’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:141: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\364’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:146: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\364’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:150: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\24’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:153: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:165: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:173: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:177: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:181: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\10’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:186: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\10’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:190: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\215’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:194: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:205: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:209: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\200’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:213: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:217: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\2’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:221: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\230’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:226: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\230’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:230: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:234: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:245: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\216’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:253: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:257: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\2’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:261: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\354’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:266: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\354’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:270: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\360’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\7’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:274: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:285: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\230’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:293: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\16’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:297: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\3’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:301: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\350’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:306: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\350’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:310: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:313: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:325: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\244’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:333: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\17’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:337: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\3’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:341: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\354’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:346: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\354’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:350: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:353: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:365: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\260’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:373: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:377: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\3’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:381: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\360’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:386: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\360’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:390: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:393: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:405: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\265’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:413: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\6’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:417: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\3’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:421: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\364’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:426: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\364’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:430: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\370’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:433: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:437: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:445: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\10’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:449: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\276’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:453: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:457: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\3’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:461: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\354’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:466: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\354’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:470: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\24’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:473: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:485: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:489: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\303’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:493: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:497: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\3’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:501: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:506: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:509: error: stray ‘@’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:510: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\220’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:513: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:525: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:529: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\314’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:533: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:537: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\3’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:541: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\220’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:546: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\220’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:549: error: stray ‘@’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:550: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:553: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:565: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\322’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:573: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\10’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:577: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\3’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:581: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\224’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:586: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\224’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:589: error: stray ‘@’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:590: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\4’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:605: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\327’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:613: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:617: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\224’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:629: error: stray ‘@’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:630: warning: null character(s) ignored
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:633: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:645: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:653: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\3’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:657: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\310’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:669: error: stray ‘@’ in program
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:670: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\346’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:673: warning: null character(s) ignored
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:4: error: stray ‘\1’ in program
In file included from sdl.h:18:0,
from system.h:27,
from system.c:17:
/usr/lib/i386-linux-gnu/libSDL_net-1.2.so.0.8.0:58:685: warning: null character(s) ignored
Makefile:56: polecenia dla obiektu 'system.o' nie powiodły się
make[2]: *** [system.o] Błąd 1
make[2]: Opuszczenie katalogu '/home/matefizychem/rocksndiamonds-4.0.0.0-rc3/src/libgame'
Makefile:223: polecenia dla obiektu 'libgame_dir' nie powiodły się
make[1]: *** [libgame_dir] Błąd 2
make[1]: Opuszczenie katalogu '/home/matefizychem/rocksndiamonds-4.0.0.0-rc3/src'
Makefile:71: polecenia dla obiektu 'sdl2' nie powiodły się
make: *** [sdl2] Błąd 2


It is the funniest install I have ever witnessed. :mrgreen:

...I found out it killed my Linux, good thing I did not do much progress in it. Since now I am only using a default installer for SDL stuff. :|

Re: The 1st version of R'n'D

Posted: Tue Nov 01, 2016 8:37 am
by Holger
Was this a result of a "make sdl"? (As it looks like it uses SDL 1.2.)

Really looks strange... never got such errors. But you should use SDL2 with R'n'D 4.0.0.0 anyway; it *should* then compile without warnings or errors.

Re: The 1st version of R'n'D

Posted: Tue Nov 01, 2016 9:09 am
by MateFizyChem
Holger wrote:Was this a result of a "make sdl"? (As it looks like it uses SDL 1.2.)

Really looks strange... never got such errors. But you should use SDL2 with R'n'D 4.0.0.0 anyway; it *should* then compile without warnings or errors.
I forgot which SDL, but I am putting my bet at SDL 1,2.
I did not have SDL in the first place, and I guess the 1st attempt of installing SDL broke my Linux.
I think the error came, because I probaby pointed to the wrong file(there were some, not one).

And there is a question between the walls of text. You missed it.

Re: The 1st version of R'n'D

Posted: Tue Nov 01, 2016 10:20 am
by Holger
Why did you remove the old music(for example czardasz(if I forgot the name than I shall be shamed because the word looks polish and I am polish))?
Yes, the word looks polish -- that music excerpt is from the album "Czarsasz" from polish rock musician Robert Pieculewicz. I listened to his great music when he performed it (with a portable PA / loud speaker and an electric guitar) on Europe's biggest market square in Krakow in 1994 or 1995. There I bought a music cassette with that album from him and later used an excerpt of it for R'n'D. Many years later I removed all those music rip-offs (although I got permission to use them in R'n'D from most of the musicians of those tracks) and replaced them with MOD music.

You can easily use the old music by replacing the "music" folder, if you like.

Re: The 1st version of R'n'D

Posted: Wed Nov 02, 2016 4:55 pm
by MateFizyChem
How about spoiling the differences? :D
I am sure about the old music(they were not even MODs!) and the death laugh.
There definitely were not any custom/group elements.
The level editor emerald mine key graphics were different.
It was not available for Windows.