Tobias Olsson - 2016-02-23

Hello there, first I must say thank you, for sharing this useful software.
I have ben using snap7 on on debian with x86 arch for some time, and today gave it a try on my old raspberry.
When I tried to make the plain-c files, I found a small thing, (arm_V6.)
after typing make, I got the following error message:

pi@pibox:~/src/snap7-full-1.4.0/examples/plain-c/arm_v6-linux $ make
gcc -o client ../client.c -lsnap7
gcc -o server ../server.c -lsnap7
gcc -o srv_resourceless ../serv_resourceless.c -lsnap7
gcc: error: ../serv_resourceless.c: No such file or directory
makefile:19: recipe for target 'all' failed
make: *** [all] Error 1


Then I opened the make file, and changed "serv_resourceless.c" to "srv_resourceless.c"

after that make completed without errors as below.

pi@pibox:~/src/snap7-full-1.4.0/examples/plain-c/arm_v6-linux $ sudo make
gcc -o client ../client.c -lsnap7
gcc -o server ../server.c -lsnap7
gcc -o srv_resourceless ../srv_resourceless.c -lsnap7
gcc -o apartner ../apartner.c -lsnap7
gcc -o ppartner ../ppartner.c -lsnap7

/Regards Tobias