stop exporting microhttpd_lib API

This commit is contained in:
Christian Grothoff 2015-01-09 17:10:38 +01:00
parent ba38579c08
commit 0b40e78027
14 changed files with 18 additions and 9 deletions

View File

@ -4,7 +4,6 @@ talerinclude_HEADERS = \
platform.h \ platform.h \
taler_db_lib.h \ taler_db_lib.h \
taler_json_lib.h \ taler_json_lib.h \
taler_microhttpd_lib.h \
taler_mint_service.h \ taler_mint_service.h \
taler_rsa.h \ taler_rsa.h \
taler_signatures.h \ taler_signatures.h \

View File

@ -1,3 +1,6 @@
/* NOTE: this is obsolete logic, we should migrate to the
GNUNET_CRYPTO_rsa-API as soon as possible */
/* /*
This file is part of TALER This file is part of TALER
(C) 2014 Christian Grothoff (and other contributing authors) (C) 2014 Christian Grothoff (and other contributing authors)

View File

@ -75,6 +75,7 @@ taler_mint_reservemod_LDFLAGS = \
taler_mint_httpd_SOURCES = \ taler_mint_httpd_SOURCES = \
taler-mint-httpd.c \ taler-mint-httpd.c \
taler-mint-httpd_mhd.c \ taler-mint-httpd_mhd.c \
taler-mint-httpd_json.c taler-mint-httpd_json.h \
taler-mint-httpd_keys.c \ taler-mint-httpd_keys.c \
taler-mint-httpd_deposit.c \ taler-mint-httpd_deposit.c \
taler-mint-httpd_withdraw.c \ taler-mint-httpd_withdraw.c \

View File

@ -33,7 +33,7 @@
#include "taler_signatures.h" #include "taler_signatures.h"
#include "taler_rsa.h" #include "taler_rsa.h"
#include "taler_json_lib.h" #include "taler_json_lib.h"
#include "taler_microhttpd_lib.h" #include "taler-mint-httpd_json.h"
#include "taler-mint-httpd_mhd.h" #include "taler-mint-httpd_mhd.h"
#include "taler-mint-httpd_keys.h" #include "taler-mint-httpd_keys.h"
#include "taler-mint-httpd_deposit.h" #include "taler-mint-httpd_deposit.h"

View File

@ -32,7 +32,7 @@
#include "taler_signatures.h" #include "taler_signatures.h"
#include "taler_rsa.h" #include "taler_rsa.h"
#include "taler_json_lib.h" #include "taler_json_lib.h"
#include "taler_microhttpd_lib.h" #include "taler-mint-httpd_json.h"
#include "taler-mint-httpd_keys.h" #include "taler-mint-httpd_keys.h"
#include "taler-mint-httpd_deposit.h" #include "taler-mint-httpd_deposit.h"

View File

@ -1,6 +1,6 @@
#include "platform.h" #include "platform.h"
#include <gnunet/gnunet_util_lib.h> #include <gnunet/gnunet_util_lib.h>
#include "taler_microhttpd_lib.h" #include "taler-mint-httpd_json.h"

View File

@ -32,7 +32,7 @@
#include "taler_signatures.h" #include "taler_signatures.h"
#include "taler_rsa.h" #include "taler_rsa.h"
#include "taler_json_lib.h" #include "taler_json_lib.h"
#include "taler_microhttpd_lib.h" #include "taler-mint-httpd_json.h"
#include "taler-mint-httpd_keys.h" #include "taler-mint-httpd_keys.h"

View File

@ -27,7 +27,7 @@
#include <microhttpd.h> #include <microhttpd.h>
#include <libpq-fe.h> #include <libpq-fe.h>
#include <pthread.h> #include <pthread.h>
#include "taler_microhttpd_lib.h" #include "taler-mint-httpd_json.h"
#include "taler-mint-httpd.h" #include "taler-mint-httpd.h"
#include "taler-mint-httpd_mhd.h" #include "taler-mint-httpd_mhd.h"

View File

@ -32,7 +32,7 @@
#include "taler_signatures.h" #include "taler_signatures.h"
#include "taler_rsa.h" #include "taler_rsa.h"
#include "taler_json_lib.h" #include "taler_json_lib.h"
#include "taler_microhttpd_lib.h" #include "taler-mint-httpd_json.h"
#include "taler-mint-httpd_keys.h" #include "taler-mint-httpd_keys.h"
#include "taler-mint-httpd_mhd.h" #include "taler-mint-httpd_mhd.h"
#include "taler-mint-httpd_refresh.h" #include "taler-mint-httpd_refresh.h"

View File

@ -32,7 +32,7 @@
#include "taler_signatures.h" #include "taler_signatures.h"
#include "taler_rsa.h" #include "taler_rsa.h"
#include "taler_json_lib.h" #include "taler_json_lib.h"
#include "taler_microhttpd_lib.h" #include "taler-mint-httpd_json.h"
#include "taler-mint-httpd_keys.h" #include "taler-mint-httpd_keys.h"
#include "taler-mint-httpd_mhd.h" #include "taler-mint-httpd_mhd.h"
#include "taler-mint-httpd_withdraw.h" #include "taler-mint-httpd_withdraw.h"

View File

@ -7,7 +7,6 @@ libtalerutil_la_SOURCES = \
util.c \ util.c \
json.c \ json.c \
db.c \ db.c \
microhttpd.c \
rsa.c rsa.c
libtalerutil_la_LIBADD = \ libtalerutil_la_LIBADD = \

View File

@ -1,3 +1,6 @@
/* NOTE: this is obsolete logic, we should migrate to the
GNUNET_CRYPTO_rsa-API as soon as possible */
/* /*
This file is part of TALER This file is part of TALER
(C) 2014 Christian Grothoff (and other contributing authors) (C) 2014 Christian Grothoff (and other contributing authors)

View File

@ -1,3 +1,7 @@
/* NOTE: this is obsolete logic, we should migrate to the
GNUNET_CRYPTO_rsa-API as soon as possible */
/* /*
This file is part of TALER This file is part of TALER
(C) 2014 Christian Grothoff (and other contributing authors) (C) 2014 Christian Grothoff (and other contributing authors)