configure.in contains a typo in call to AC_ARG_ENABLE related to 
--enable-pkgconfig option.

The following warnings indicate segmentation fault on 64-bit architectures, 
where
sizeof(pointer) != sizeof(int). GCC treats implicitly declared functions as 
returning int.

hmac.c: In function ‘xmlSecOpenSSLHmacVerify’:
hmac.c:388: warning: implicit declaration of function ‘xmlSecBase64Encode’
hmac.c:388: warning: assignment makes pointer from integer without a cast

-- 
Arfrever Frehtes Taifersar Arahesis
--- src/openssl/hmac.c
+++ src/openssl/hmac.c
@@ -24,6 +24,7 @@
 
 #include <openssl/hmac.h>
 
+#include <xmlsec/base64.h>
 #include <xmlsec/xmlsec.h>
 #include <xmlsec/xmltree.h>
 #include <xmlsec/keys.h>
--- configure.in
+++ configure.in
@@ -165,7 +165,7 @@
 dnl ==========================================================================
 dnl Check if pkg-config enabled and installed
 dnl ==========================================================================
-AC_ARG_ENABLE(sha1,   [  --enable-pkgconfig      enable pkgconfig for configuration (yes)])
+AC_ARG_ENABLE(pkgconfig,   [  --enable-pkgconfig      enable pkgconfig for configuration (yes)])
 if test "z$enable_pkgconfig" = "zno" ; then
     PKG_CONFIG_ENABLED=no
 else

Attachment: signature.asc
Description: This is a digitally signed message part.

_______________________________________________
xmlsec mailing list
[email protected]
http://www.aleksey.com/mailman/listinfo/xmlsec

Reply via email to