fixed link errors
This commit is contained in:
parent
41181cda26
commit
7040cb9688
|
@ -1,4 +1,8 @@
|
|||
fdb_find_sources(FDBCLIENT_SRCS)
|
||||
list(APPEND FDBCLIENT_SRCS
|
||||
sha1/SHA1.cpp
|
||||
libb64/cdecode.c
|
||||
libb64/cencode.c)
|
||||
|
||||
message(STATUS "FDB version is ${FDB_VERSION}")
|
||||
message(STATUS "FDB package name is ${FDB_PACKAGE_NAME}")
|
||||
|
|
|
@ -5,7 +5,7 @@ This is part of the libb64 project, and has been placed in the public domain.
|
|||
For details, see http://sourceforge.net/projects/libb64
|
||||
*/
|
||||
|
||||
#include "cdecode.h"
|
||||
#include "fdbclient/libb64/cdecode.h"
|
||||
|
||||
int base64_decode_value(char value_in) {
|
||||
static const char decoding[] = { 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -2, -1,
|
||||
|
|
|
@ -5,7 +5,7 @@ This is part of the libb64 project, and has been placed in the public domain.
|
|||
For details, see http://sourceforge.net/projects/libb64
|
||||
*/
|
||||
|
||||
#include "cencode.h"
|
||||
#include "fdbclient/libb64/cencode.h"
|
||||
|
||||
const int CHARS_PER_LINE = 72;
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
-- Volker Grabsch <vog@notjusthosting.com>
|
||||
*/
|
||||
|
||||
#include "SHA1.h"
|
||||
#include "fdbclient/sha1/SHA1.h"
|
||||
#include <sstream>
|
||||
#include <iomanip>
|
||||
#include <fstream>
|
||||
|
|
Loading…
Reference in New Issue