Corriger les dernières fonctions implicitement déclarées (#86867) #12

Merged
bdauvergne merged 3 commits from wip/86867-Patches-following-call-for-testi into main 2024-02-14 19:16:17 +01:00
4 changed files with 6 additions and 3 deletions

View File

@ -90,6 +90,7 @@ fi
dnl
dnl Check for programs
dnl
CFLAGS="$CFLAGS -Werror=implicit-function-declaration"
AC_PROG_CC
AM_CFLAGS=""
AC_HEADER_STDC

View File

@ -133,9 +133,6 @@ LASSO_EXPORT gchar *lasso_server_get_endpoint_url_by_id(const LassoServer *serve
LASSO_EXPORT GList *lasso_server_get_filtered_provider_list(const LassoServer *server,
LassoProviderRole role, LassoMdProtocolType protocol_type, LassoHttpMethod http_method);
LASSO_EXPORT LassoSignatureMethod lasso_get_default_signature_method();
void lasso_set_default_signature_method(LassoSignatureMethod meth);
#ifdef __cplusplus
}
#endif /* __cplusplus */

View File

@ -354,6 +354,10 @@ gchar* lasso_xmlnode_build_deflated_query(xmlNode *xmlnode);
xmlTextReader *lasso_xmltextreader_from_message(const char *message, char **to_free);
void lasso_set_default_signature_method(LassoSignatureMethod meth);
void lasso_set_min_signature_method(LassoSignatureMethod meth);
#ifdef __cplusplus
}
#endif /* __cplusplus */

View File

@ -214,6 +214,7 @@ LASSO_EXPORT LassoKeyEncryptionMethod lasso_get_default_key_encryption_method();
LASSO_EXPORT void lasso_set_default_key_encryption_method(LassoKeyEncryptionMethod method);
/* signature method and hash strength */
LASSO_EXPORT LassoSignatureMethod lasso_get_default_signature_method();
LASSO_EXPORT LassoSignatureMethod lasso_get_min_signature_method();
void lasso_set_min_signature_method(LassoSignatureMethod meth);