aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac4
-rw-r--r--src/helper/replacements.h1
2 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index ce28633..3605846 100644
--- a/configure.ac
+++ b/configure.ac
@@ -623,6 +623,10 @@ case $host in
;;
esac
+if test $is_win32 = yes; then
+ AC_DEFINE([WIN32_LEAN_AND_MEAN], [1], [1 to exclude old conflicting definitions when building on Windows])
+fi
+
if test $build_parport = yes; then
build_bitbang=yes
AC_DEFINE([BUILD_PARPORT], [1], [1 if you want parport.])
diff --git a/src/helper/replacements.h b/src/helper/replacements.h
index 565fe9d..2776602 100644
--- a/src/helper/replacements.h
+++ b/src/helper/replacements.h
@@ -135,7 +135,6 @@ static inline unsigned usleep(unsigned int usecs)
/* Windows specific */
#ifdef _WIN32
-#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <time.h>