[vlc-commits] configure: add quotes
Marvin Scholz
git at videolan.org
Thu Mar 26 09:09:05 CET 2020
vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Wed Mar 11 01:51:23 2020 +0100| [783c925f4c4202a5f58cc8c59dd16288d1561d1e] | committer: Marvin Scholz
configure: add quotes
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=783c925f4c4202a5f58cc8c59dd16288d1561d1e
---
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 0a43ce851b..937154affe 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.])
More information about the vlc-commits
mailing list