On Sun, 17 Dec 2000, David Talkington wrote:

> set -e; for i in kgsha src mod; do make -C $i ; done
> make[1]: Entering directory
> `/usr/local/src/bestcrypt/bcrypt-0.4b-4/kgsha'
> g++ -Wall -Werror -fno-strength-reduce -I../include  -c -o alg.o
> alg.cpp
> In file included from alg.cpp:17:
> ../include/bc_types.h:48:6: no newline at end of file

This is a bug old versions of gcc tolerated, newer versions don't.
Include files MUST end with a newline.

This command should fix the problem:
echo >>/usr/local/src/bestcrypt/bcrypt-0.4b-4/include/bc_types.h

You might have to do the same thing for all other include files that come
with the package.

Try
for i in /usr/local/src/bestcrypt/bcrypt-0.4b-4/include/*.h; do echo >>$i; done

LLaP
bero




_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to