* modules/msvc-inval (Include): Document recommended idiom.
* modules/msvc-nothrow (Include): Likewise.
2017-05-10 Bruno Haible <bruno@clisp.org>
+ Implement a way to opt out from MSVC support, part 2.
+ * modules/msvc-inval (Include): Document recommended idiom.
+ * modules/msvc-nothrow (Include): Likewise.
+
Implement a way to opt out from MSVC support.
This is useful for Emacs.
* modules/msvc-nothrow (configure.ac): Invoke gl_MODULE_INDICATOR.
Makefile.am:
Include:
-"msvc-inval.h"
+#if HAVE_MSVC_INVALID_PARAMETER_HANDLER
+# include "msvc-inval.h"
+#endif
License:
LGPLv2+
Makefile.am:
Include:
-"msvc-nothrow.h"
+#if GNULIB_MSVC_NOTHROW
+# include "msvc-nothrow.h"
+#else
+# include <io.h>
+#endif
License:
LGPLv2+