Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!eternal-september.org!feeder.eternal-september.org!mx04.eternal-september.org!.POSTED!not-for-mail From: sfeam Newsgroups: comp.graphics.apps.gnuplot Subject: Re: gnuplot from source Followup-To: comp.graphics.apps.gnuplot Date: Mon, 19 Dec 2011 10:34:59 -0800 Organization: gnuplot development team Lines: 22 Message-ID: References: <31257344.245.1324305589854.JavaMail.geo-discussion-forums@yqni12> Reply-To: sfeam@users.sourceforge.net Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8Bit Injection-Date: Mon, 19 Dec 2011 18:35:02 +0000 (UTC) Injection-Info: mx04.eternal-september.org; posting-host="joalffpZlyHxFtpFd/PRrw"; logging-data="16982"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19t1O5Jqrm5yEuorLCN8Ac1" User-Agent: KNode/4.4.9 Cancel-Lock: sha1:72+D21zVjOWQjS5UE0P2oabOzcM= Xref: x330-a1.tempe.blueboxinc.net comp.graphics.apps.gnuplot:767 Дмитрий Долгов wrote: > I built gnuplot simple > > ./configure > ./make > ./sudo make install > > but can't set terminal gif (error: unknown or ambiguous terminal type). > How to build gnuplot from source with support output to gif? Look at the output from ./configure. It will tell you which terminal types it could find support libraries for, and which it could not. In your case you will probably see messages like: jpeg terminal: no (requires libgd with jpeg support) gif terminal: no (requires libgd with gif support) png terminal: no (requires libgd with png support) all telling you that support for the gd library was not found on your system. Note that you need to have installed the development package in addition to the library itself. The name is typically something like libgd-devel.