From c80770901dc367afb2d3ab39f274a4ae5dae72be Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Sat, 27 Dec 2008 18:57:54 +0000 Subject: [PATCH] * configure.ac: add SECURITY_WIN32 to the proprocessor on Windows XP, should fix the bug with security.h SVN revision: 38334 --- legacy/evil/ChangeLog | 6 ++++++ legacy/evil/configure.ac | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/legacy/evil/ChangeLog b/legacy/evil/ChangeLog index 7685b0e226..dd9e66d464 100644 --- a/legacy/evil/ChangeLog +++ b/legacy/evil/ChangeLog @@ -1,3 +1,9 @@ +2008-12-27 Vincent Torri + + * configure.ac: + add SECURITY_WIN32 to the proprocessor on Windows XP, + should fix the bug with security.h + 2008-12-27 Vincent Torri * src/bin/evil_test_environment.c: diff --git a/legacy/evil/configure.ac b/legacy/evil/configure.ac index 6bc1941885..37b7edeeac 100644 --- a/legacy/evil/configure.ac +++ b/legacy/evil/configure.ac @@ -93,7 +93,7 @@ case "$host_os" in ;; *) have_wince="no" - win32_cppflags="${win32_cppflags} -D_WIN32_WINNT=0x0500" + win32_cppflags="${win32_cppflags} -D_WIN32_WINNT=0x0500 -DSECURITY_WIN32" ;; esac AC_SUBST(win32_cppflags)