fixed link errors

This commit is contained in:
Markus Pilman 2022-06-27 19:00:40 -06:00
parent 41181cda26
commit 7040cb9688
4 changed files with 7 additions and 3 deletions

View File

@ -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}")

View File

@ -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,

View File

@ -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;

View File

@ -13,7 +13,7 @@
-- Volker Grabsch <vog@notjusthosting.com>
*/
#include "SHA1.h"
#include "fdbclient/sha1/SHA1.h"
#include <sstream>
#include <iomanip>
#include <fstream>