From 783c925f4c4202a5f58cc8c59dd16288d1561d1e Mon Sep 17 00:00:00 2001 From: Marvin Scholz <epirat07@gmail.com> Date: Wed, 11 Mar 2020 01:51:23 +0100 Subject: [PATCH] configure: add quotes --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 0a43ce851b8e..937154affe44 100644 --- a/configure.ac +++ b/configure.ac @@ -268,9 +268,9 @@ case "${host_os}" in #endif ]],[[;]]) ],[ - AC_DEFINE([_WIN32_WINNT], 0x0601, [Define to '0x0601' for Windows 7 APIs.]) + AC_DEFINE([_WIN32_WINNT], [0x0601], [Define to '0x0601' for Windows 7 APIs.]) ]) - AC_DEFINE([_WIN32_IE], 0x0600, [Define to '0x0600' for IE 6.0 (and shell) APIs.]) + AC_DEFINE([_WIN32_IE], [0x0600], [Define to '0x0600' for IE 6.0 (and shell) APIs.]) AC_DEFINE([UNICODE], [1], [Define to 1 for Unicode (Wide Chars) APIs.]) AC_DEFINE([_ISOC99_SOURCE], [1], [Extensions to ISO C89 from ISO C99.]) AC_DEFINE([_ISOC11_SOURCE], [1], [Extensions to ISO C99 from ISO C11.]) -- GitLab