|
From: Ethan M. <me...@uw...> - 2024-04-06 23:38:50
|
On Saturday, 6 April 2024 05:57:00 PDT Allin Cottrell wrote:
> I just built gnuplot 6.0 on Linux, passing --with-metapost to
> configure. In the output from configure I see "metapost : yes", but
> on running the program after "make install" there's no mp terminal
> available:
>
> gnuplot> set term mp
>
> Terminal type is now 'unknown'
Stupid typo in term.h
#ifdef WITH_METAPOST should be #ifdef HAVE_METAPOST
Fixed now
Ethan
|