Attached file "0003-autoconf-2.68-fixes.patch" will suspend a warning if
xmlsec is bootstrapped with autoconf 2.68+
Roumen
>From 068db54469dbd93b01f93379bac3fd850e3bfa78 Mon Sep 17 00:00:00 2001
From: Local <[email protected]>
Date: Fri, 11 Nov 2011 23:45:02 +0200
Subject: [PATCH 3/6] autoconf 2.68 fixes
---
configure.in | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure.in b/configure.in
index ca28fa1..e06b485 100644
--- a/configure.in
+++ b/configure.in
@@ -950,11 +950,11 @@ dnl AC_CHECK_LIB(crypt32, CertOpenStore, ....
LIBS_SAVE="$LIBS"
LIBS="$LIBS -lcrypt32"
AC_MSG_CHECKING(for mscrypto libraries)
- AC_LINK_IFELSE([
+ AC_LINK_IFELSE([AC_LANG_PROGRAM([
#include <windows.h>
- #include <wincrypt.h>
+ #include <wincrypt.h>],[
int main () { CertOpenStore(0,0,0,0,0);; return(0); }
- ],
+ ])],
[],
[MSCRYPTO_ENABLE="no"])
AC_MSG_RESULT([$MSCRYPTO_ENABLE])
--
1.6.4
_______________________________________________
xmlsec mailing list
[email protected]
http://www.aleksey.com/mailman/listinfo/xmlsec