Getting GnuPlot to compile on OSXfrom 2010/05/27
I misunderstood an officemate’s question yesterday and set out to compile gnuplot. Stock GNUPlot will fail to compile on OSX due to an incompatibility in the readline library. So when you compile, let GNUPlot know to use the one included: > tar xzvf gnuplot* > cd gnuplot-4.2.39 > ./configure --prefix=/usr/local --with-readline=builtin > make > sudo make install |