From e5d70d0821a46107595e2e62af9ab2d2f9ab4fa9 Mon Sep 17 00:00:00 2001 From: h_vogt Date: Sun, 12 Feb 2017 23:06:04 +0100 Subject: [PATCH] gnuplot.c, bug fix, allow gnuplot with MINGW --- src/frontend/plotting/gnuplot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/plotting/gnuplot.c b/src/frontend/plotting/gnuplot.c index be1c2782b..210d17947 100644 --- a/src/frontend/plotting/gnuplot.c +++ b/src/frontend/plotting/gnuplot.c @@ -131,7 +131,7 @@ ft_gnuplot(double *xlims, double *ylims, char *filename, char *title, char *xlab } /* Set up the file header. */ -#if !defined(__MINGW__) && !defined(_MSC_VER) +#if !defined(__MINGW32__) && !defined(_MSC_VER) fprintf(file, "set terminal X11 noenhanced\n"); #else fprintf(file, "set termoption noenhanced\n");