> First problem:
>
> [ 31%] Building CXX object CMakeFiles/cppcms.dir/src/crypto.cpp.o
> In file included
> from /home/daniel/development/cpp/projects/cppcms/src/crypto.cpp:31:
> /home/daniel/development/cpp/projects/cppcms/private/sha1.h:21:35:
> error: boost/static_assert.hpp: No such file or directory
>
> To fix that I change the line 31
>
> -#include <boost/static_assert.hpp
> +#include "cppcms_boost/static_assert.hpp"
Thanks,
Actually this header should not be at all.
Fixed
>
> Second problem:
>
> [ 67%] Building CXX object
> CMakeFiles/encryptor_test.dir/tests/encryptor_test.cpp.o
> /home/daniel/development/cpp/projects/cppcms/tests/encryptor_test.cpp:
> In function ‘std::string to_string(unsigned char*, size_t)’:
> /home/daniel/development/cpp/projects/cppcms/tests/encryptor_test.cpp:91:
>error: ‘sprintf’ was not declared in this scope
>
>
> As you know I fixed that error with add #include <stdio.h>
>
Ok, fixed as well.
Take svn update.
Artyom
|