From 6078650b9396c309b593f0395cb0ef6fa552329a Mon Sep 17 00:00:00 2001 From: markisch Date: Fri, 6 Oct 2017 07:36:50 +0000 Subject: [PATCH] Add a note on secure APIs --- ChangeLog | 3 +++ config/mingw/Makefile | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 13a643990..9fe292c1c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,9 @@ Note that building using Mingw32 currently does not work anyway due to missing headers libraries for newer Windows APIs. + * config/mingw/Makefile: Add a note that secure APIs are required + (pointed out by Allin Cottrell on the mailing list). + 2017-10-05 Bastian Maerkisch * src/win/wd2d.cpp: Enable color font support. This enables colored diff --git a/config/mingw/Makefile b/config/mingw/Makefile index 75f07bd6e..dc3e99198 100644 --- a/config/mingw/Makefile +++ b/config/mingw/Makefile @@ -1,10 +1,12 @@ # Hello, emacs: this is a -*- Makefile -*- -# $Id: Makefile,v 1.87 2017-10-06 07:28:39 markisch Exp $ +# $Id: Makefile,v 1.88 2017-10-06 07:36:50 markisch Exp $ # # GNUPLOT Makefile for MinGW/MSYS or MinGW-w64/MSYS2 on Windows # # Note: Currently MinGW cannot be used to compile gnuplot unless # libraries / headers are updated. +# Note that Mingw-w64 needs to be configured with --enable-secure-api, and +# MINGW_HAS_SECURE_API must be defined in _mingw.h. # # See http://www.mingw.org or http://msys2.github.io/ for more details.