aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2021-02-22 19:09:47 +0100
committerMartin Schanzenbach <mschanzenbach@posteo.de>2021-02-22 19:09:47 +0100
commitcd21a6a205f25c19a9fce93277e0427524756cf3 (patch)
treeab4bd53da117aa0f8f1ab5dc305927a0fabd178d
parenta226304fe61d0c76c4b7b811e73a508136eb579d (diff)
downloadgnunet-cd21a6a205f25c19a9fce93277e0427524756cf3.tar.gz
gnunet-cd21a6a205f25c19a9fce93277e0427524756cf3.zip
-pabc update header location
-rw-r--r--configure.ac6
-rw-r--r--src/reclaim/pabc_helper.h2
-rw-r--r--src/reclaim/plugin_reclaim_credential_pabc.c2
-rw-r--r--src/reclaim/plugin_rest_pabc.c2
4 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 62c9b2d4f..025c4fd0f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -776,18 +776,18 @@ AC_ARG_WITH(pabc,
776 AS_CASE([$with_pabc], 776 AS_CASE([$with_pabc],
777 [no],[], 777 [no],[],
778 [yes],[ 778 [yes],[
779 CHECK_LIBHEADER(PABC, pabc, pabc_new_ctx, libpabc/libpabc.h,pabc=1,) 779 CHECK_LIBHEADER(PABC, pabc, pabc_new_ctx, pabc/pabc.h,pabc=1,)
780 ],[ 780 ],[
781 LDFLAGS="-L$with_pabc/lib $LDFLAGS" 781 LDFLAGS="-L$with_pabc/lib $LDFLAGS"
782 CPPFLAGS="-I$with_pabc/include $CPPFLAGS" 782 CPPFLAGS="-I$with_pabc/include $CPPFLAGS"
783 AC_CHECK_HEADERS(libpabc/libpabc.h, 783 AC_CHECK_HEADERS(pabc/pabc.h,
784 AC_CHECK_LIB([pabc], [pabc_new_ctx], 784 AC_CHECK_LIB([pabc], [pabc_new_ctx],
785 EXT_LIB_PATH="-L$with_pabc/lib $EXT_LIB_PATH" 785 EXT_LIB_PATH="-L$with_pabc/lib $EXT_LIB_PATH"
786 pabc=1)) 786 pabc=1))
787 ]) 787 ])
788 ], 788 ],
789 [AC_MSG_RESULT([--with-pabc not specified]) 789 [AC_MSG_RESULT([--with-pabc not specified])
790 CHECK_LIBHEADER(PABC, pabc, pabc_new_ctx, libpabc/libpabc.h,pabc=1,)]) 790 CHECK_LIBHEADER(PABC, pabc, pabc_new_ctx, pabc/pabc.h,pabc=1,)])
791AM_CONDITIONAL(HAVE_PABC, [test x$pabc = x1]) 791AM_CONDITIONAL(HAVE_PABC, [test x$pabc = x1])
792 792
793 793
diff --git a/src/reclaim/pabc_helper.h b/src/reclaim/pabc_helper.h
index 491672a8b..045ad5dda 100644
--- a/src/reclaim/pabc_helper.h
+++ b/src/reclaim/pabc_helper.h
@@ -1,6 +1,6 @@
1#include "platform.h" 1#include "platform.h"
2#include "gnunet_util_lib.h" 2#include "gnunet_util_lib.h"
3#include <libpabc/libpabc.h> 3#include <pabc/pabc.h>
4 4
5#ifndef PATH_MAX 5#ifndef PATH_MAX
6#define PATH_MAX 4096 6#define PATH_MAX 4096
diff --git a/src/reclaim/plugin_reclaim_credential_pabc.c b/src/reclaim/plugin_reclaim_credential_pabc.c
index dae23ab1a..148cfec13 100644
--- a/src/reclaim/plugin_reclaim_credential_pabc.c
+++ b/src/reclaim/plugin_reclaim_credential_pabc.c
@@ -30,7 +30,7 @@
30#include "gnunet_reclaim_plugin.h" 30#include "gnunet_reclaim_plugin.h"
31#include <inttypes.h> 31#include <inttypes.h>
32#include <jansson.h> 32#include <jansson.h>
33#include <libpabc/libpabc.h> 33#include <pabc/pabc.h>
34#include "pabc_helper.h" 34#include "pabc_helper.h"
35 35
36/** 36/**
diff --git a/src/reclaim/plugin_rest_pabc.c b/src/reclaim/plugin_rest_pabc.c
index 3d34b85fe..1c766a716 100644
--- a/src/reclaim/plugin_rest_pabc.c
+++ b/src/reclaim/plugin_rest_pabc.c
@@ -27,7 +27,7 @@
27#include "microhttpd.h" 27#include "microhttpd.h"
28#include <inttypes.h> 28#include <inttypes.h>
29#include <jansson.h> 29#include <jansson.h>
30#include <libpabc/libpabc.h> 30#include <pabc/pabc.h>
31#include "gnunet_reclaim_lib.h" 31#include "gnunet_reclaim_lib.h"
32#include "gnunet_reclaim_service.h" 32#include "gnunet_reclaim_service.h"
33#include "gnunet_rest_lib.h" 33#include "gnunet_rest_lib.h"